Skip to content

Commit

Permalink
Angular 11 update
Browse files Browse the repository at this point in the history
  • Loading branch information
manfredsteyer committed Dec 23, 2020
1 parent e04493c commit 62525e9
Show file tree
Hide file tree
Showing 11 changed files with 1,060 additions and 745 deletions.
1 change: 1 addition & 0 deletions lib/.npmignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
*.ts
!*.d.ts
2 changes: 1 addition & 1 deletion lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngx-build-plus",
"version": "10.1.1",
"version": "11.0.0-beta.02",
"description": "Extends the Angular CLI's build process!",
"license": "MIT",
"repository": {
Expand Down
41 changes: 41 additions & 0 deletions lib/src/browser/schema.ext.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"$schema": "http://json-schema.org/schema",

"extraWebpackConfig": {
"type": "string",
"description": "Additional Webpack Config that gets merged with the default config."
},
"singleBundle": {
"type": "boolean",
"description": "Puts everything reachable from main.ts (entries vendor, main, and runtime) into one bundle. All other entry points are removed. To also get polyfills and/or styles, use --keepPolyfills or --keepStyles",
"default": false
},
"keepPolyfills": {
"type": "boolean",
"description": "Generate polyfills bundle when using single-bundle",
"default": true
},
"configHook": {
"type": "string",
"description": "es module exporting a configHook function (default export).",
"default": ""
},

"plugin": {
"type": "string",
"description": "es module exporting a Plugin object (default export). Just used for ng build; not for ng serve",
"default": ""
},
"bundleStyles": {
"type": "boolean",
"description": "DEPRECATED: Use keepStyles instead",
"default": true
},
"keepStyles": {
"type": "boolean",
"description": "Used conjunction with 'singleBundle' to explizitly bundle styles",
"default": true
}


}
Loading

0 comments on commit 62525e9

Please sign in to comment.