File tree 1 file changed +36
-1
lines changed
packages/angular/cli/lib/config
1 file changed +36
-1
lines changed Original file line number Diff line number Diff line change 492
492
" @angular-devkit/build-angular:karma" ,
493
493
" @angular-devkit/build-angular:protractor" ,
494
494
" @angular-devkit/build-angular:server" ,
495
- " @angular-devkit/build-angular:tslint"
495
+ " @angular-devkit/build-angular:tslint" ,
496
+ " @angular-devkit/build-angular:ng-packagr"
496
497
]
497
498
}
498
499
},
634
635
"additionalProperties" : { "$ref" : " #/definitions/targetOptions/definitions/tslint" }
635
636
}
636
637
}
638
+ },
639
+ {
640
+ "type" : " object" ,
641
+ "properties" : {
642
+ "builder" : { "const" : " @angular-devkit/build-angular:ng-packagr" },
643
+ "options" : { "$ref" : " #/definitions/targetOptions/definitions/ngPackagr" },
644
+ "configurations" : {
645
+ "type" : " object" ,
646
+ "additionalProperties" : { "$ref" : " #/definitions/targetOptions/definitions/ngPackagr" }
647
+ }
648
+ }
637
649
}
638
650
]
639
651
}
2132
2144
}
2133
2145
},
2134
2146
"additionalProperties" : false
2147
+ },
2148
+ "ngPackagr" : {
2149
+ "description" : " ng-packagr target options for Build Architect. Use to build library projects." ,
2150
+ "type" : " object" ,
2151
+ "properties" : {
2152
+ "project" : {
2153
+ "type" : " string" ,
2154
+ "description" : " The file path for the ng-packagr configuration file, relative to the current workspace."
2155
+ },
2156
+ "tsConfig" : {
2157
+ "type" : " string" ,
2158
+ "description" : " The full path for the TypeScript configuration file, relative to the current workspace."
2159
+ },
2160
+ "watch" : {
2161
+ "type" : " boolean" ,
2162
+ "description" : " Run build when files change." ,
2163
+ "default" : false
2164
+ }
2165
+ },
2166
+ "additionalProperties" : false ,
2167
+ "required" : [
2168
+ " project"
2169
+ ]
2135
2170
}
2136
2171
}
2137
2172
},
You can’t perform that action at this time.
0 commit comments