Skip to content

Instantly share code, notes, and snippets.

@Stuff90
Created September 11, 2018 12:58
Show Gist options
  • Save Stuff90/ff775186b0cf48d7f62ad8b9cc0cae5b to your computer and use it in GitHub Desktop.
Save Stuff90/ff775186b0cf48d7f62ad8b9cc0cae5b to your computer and use it in GitHub Desktop.
Nx schematics collection file
{
"$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