27 lines
820 B
TypeScript
27 lines
820 B
TypeScript
import type { Tree } from '@nx/devkit';
|
|
import { formatFiles } from '@nx/devkit';
|
|
import { directiveGenerator } from '../directive/directive';
|
|
import { exportScam } from '../utils/export-scam';
|
|
import { convertDirectiveToScam, normalizeOptions } from './lib';
|
|
import type { Schema } from './schema';
|
|
|
|
export async function scamDirectiveGenerator(tree: Tree, rawOptions: Schema) {
|
|
const options = await normalizeOptions(tree, rawOptions);
|
|
await directiveGenerator(tree, {
|
|
...options,
|
|
skipImport: true,
|
|
export: false,
|
|
standalone: false,
|
|
skipFormat: true,
|
|
// options are already normalize, use them as is
|
|
nameAndDirectoryFormat: 'as-provided',
|
|
});
|
|
|
|
convertDirectiveToScam(tree, options);
|
|
exportScam(tree, options);
|
|
|
|
await formatFiles(tree);
|
|
}
|
|
|
|
export default scamDirectiveGenerator;
|