Created
September 11, 2018 12:58
-
-
Save Stuff90/ff775186b0cf48d7f62ad8b9cc0cae5b to your computer and use it in GitHub Desktop.
Nx schematics collection file
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
{ | |
"$schema": "../../node_modules/@angular-devkit/schematics/collection-schema.json", | |
"name": "my-schematics-collection", | |
"version": "0.0.1", | |
"extends": ["@nrwl/schematics"], | |
"schematics": { | |
"my-schematic-name": { | |
"factory": "../../dist/out-tsc/tools/schematics/my-schematic-name", | |
"schema": "./my-schematic-name/schema.json", | |
"description": "Do awesome stuff" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment