Created
August 7, 2021 17:09
-
-
Save cagcak/6bfbb02dd5c0843996daee84b13a3e75 to your computer and use it in GitHub Desktop.
Default custom angular schematics
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { chain, externalSchematic, Rule } from '@angular-devkit/schematics'; | |
export default function(schema: any): Rule { | |
return chain([ | |
externalSchematic('@nrwl/workspace', 'lib', { | |
name: schema.name, | |
}), | |
]); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment