Skip to content

Instantly share code, notes, and snippets.

@bniedermeyer
Last active March 1, 2019 03:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bniedermeyer/969612c44e0f550ab9b1d973d940a31a to your computer and use it in GitHub Desktop.
Save bniedermeyer/969612c44e0f550ab9b1d973d940a31a to your computer and use it in GitHub Desktop.
{
"$schema": "../node_modules/@angular-devkit/schematics/collection-schema.json",
"schematics": {
"bootstrap-project": {
"description": "Main entry point for the schematic. Calls additional schematics and coordinates their operation",
"factory": "./my-awesome-schematic/index#myAwesomeSchematic",
"schema": "./my-awesome-schematic/schema.json"
},
"add-dependencies": {
"description": "Install dependencies for the setup process",
"private": true,
"factory": "./add-dependencies/index",
"schema": "./add-dependencies/schema.json"
},
"add-files": {
"description": "Performs additional setup actions for configuring the project.",
"private": true,
"factory": "./add-files/index",
"schema": "./add-files/schema.json"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment