2023-11-07 15:45:42 -05:00

13 lines
367 B
TypeScript

import type { Tree } from '@nx/devkit';
import { Schema } from '../schema';
export function validateOptions(tree: Tree, options: Schema): void {
if (!options.parent) {
throw new Error('Please provide a value for "--parent"!');
}
if (options.parent && !tree.exists(options.parent)) {
throw new Error(`Parent does not exist: ${options.parent}.`);
}
}