mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 11:01:21 +08:00
10 lines
223 B
TypeScript
10 lines
223 B
TypeScript
import { chain, externalSchematic, Rule } from '@angular-devkit/schematics';
|
|
|
|
export default function (schema: any): Rule {
|
|
return chain([
|
|
externalSchematic('@nrwl/workspace', 'lib', {
|
|
name: schema.name,
|
|
}),
|
|
]);
|
|
}
|