14 lines
408 B
JSON
14 lines
408 B
JSON
|
{
|
||
|
"$schema": "../../../node_modules/@angular-devkit/schematics/collection-schema.json",
|
||
|
"schematics": {
|
||
|
"ng-add": {
|
||
|
"description": "Add my library to the project.",
|
||
|
"factory": "./ng-add/index#ngAdd"
|
||
|
},
|
||
|
"my-service": {
|
||
|
"description": "Generate a service in the project.",
|
||
|
"factory": "./my-service/index#myService",
|
||
|
"schema": "./my-service/schema.json"
|
||
|
}
|
||
|
}
|
||
|
}
|