@angular-devkit/build-angular 15.0.0-rc.4 → 15.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +10 -10
- package/src/builders/browser/schema.d.ts +2 -2
- package/src/builders/browser/schema.json +1 -1
- package/src/builders/browser-esbuild/schema.d.ts +2 -2
- package/src/builders/browser-esbuild/schema.json +1 -1
- package/src/builders/server/schema.d.ts +5 -0
- package/src/builders/server/schema.json +5 -0
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular-devkit/build-angular",
|
|
3
|
-
"version": "15.0.0
|
|
3
|
+
"version": "15.0.0",
|
|
4
4
|
"description": "Angular Webpack Build Facade",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"typings": "src/index.d.ts",
|
|
7
7
|
"builders": "builders.json",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@ampproject/remapping": "2.2.0",
|
|
10
|
-
"@angular-devkit/architect": "0.1500.0
|
|
11
|
-
"@angular-devkit/build-webpack": "0.1500.0
|
|
12
|
-
"@angular-devkit/core": "15.0.0
|
|
10
|
+
"@angular-devkit/architect": "0.1500.0",
|
|
11
|
+
"@angular-devkit/build-webpack": "0.1500.0",
|
|
12
|
+
"@angular-devkit/core": "15.0.0",
|
|
13
13
|
"@babel/core": "7.20.2",
|
|
14
14
|
"@babel/generator": "7.20.4",
|
|
15
15
|
"@babel/helper-annotate-as-pure": "7.18.6",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"@babel/runtime": "7.20.1",
|
|
21
21
|
"@babel/template": "7.18.10",
|
|
22
22
|
"@discoveryjs/json-ext": "0.5.7",
|
|
23
|
-
"@ngtools/webpack": "15.0.0
|
|
23
|
+
"@ngtools/webpack": "15.0.0",
|
|
24
24
|
"ansi-colors": "4.1.3",
|
|
25
25
|
"autoprefixer": "10.4.13",
|
|
26
26
|
"babel-loader": "9.1.0",
|
|
@@ -71,12 +71,12 @@
|
|
|
71
71
|
"esbuild": "0.15.13"
|
|
72
72
|
},
|
|
73
73
|
"peerDependencies": {
|
|
74
|
-
"@angular/compiler-cli": "^15.0.0
|
|
75
|
-
"@angular/localize": "^15.0.0
|
|
76
|
-
"@angular/platform-server": "^15.0.0
|
|
77
|
-
"@angular/service-worker": "^15.0.0
|
|
74
|
+
"@angular/compiler-cli": "^15.0.0",
|
|
75
|
+
"@angular/localize": "^15.0.0",
|
|
76
|
+
"@angular/platform-server": "^15.0.0",
|
|
77
|
+
"@angular/service-worker": "^15.0.0",
|
|
78
78
|
"karma": "^6.3.0",
|
|
79
|
-
"ng-packagr": "^15.0.0
|
|
79
|
+
"ng-packagr": "^15.0.0",
|
|
80
80
|
"protractor": "^7.0.0",
|
|
81
81
|
"tailwindcss": "^2.0.0 || ^3.0.0",
|
|
82
82
|
"typescript": "~4.8.2"
|
|
@@ -157,8 +157,8 @@ export interface Schema {
|
|
|
157
157
|
*/
|
|
158
158
|
tsConfig: string;
|
|
159
159
|
/**
|
|
160
|
-
* Generate a seperate bundle containing only vendor libraries. This option should only
|
|
161
|
-
* for development.
|
|
160
|
+
* Generate a seperate bundle containing only vendor libraries. This option should only be
|
|
161
|
+
* used for development to reduce the incremental compilation time.
|
|
162
162
|
*/
|
|
163
163
|
vendorChunk?: boolean;
|
|
164
164
|
/**
|
|
@@ -256,7 +256,7 @@
|
|
|
256
256
|
},
|
|
257
257
|
"vendorChunk": {
|
|
258
258
|
"type": "boolean",
|
|
259
|
-
"description": "Generate a seperate bundle containing only vendor libraries. This option should only used for development.",
|
|
259
|
+
"description": "Generate a seperate bundle containing only vendor libraries. This option should only be used for development to reduce the incremental compilation time.",
|
|
260
260
|
"default": false
|
|
261
261
|
},
|
|
262
262
|
"commonChunk": {
|
|
@@ -162,8 +162,8 @@ export interface Schema {
|
|
|
162
162
|
*/
|
|
163
163
|
tsConfig: string;
|
|
164
164
|
/**
|
|
165
|
-
* Generate a seperate bundle containing only vendor libraries. This option should only
|
|
166
|
-
* for development.
|
|
165
|
+
* Generate a seperate bundle containing only vendor libraries. This option should only be
|
|
166
|
+
* used for development to reduce the incremental compilation time.
|
|
167
167
|
*/
|
|
168
168
|
vendorChunk?: boolean;
|
|
169
169
|
/**
|
|
@@ -264,7 +264,7 @@
|
|
|
264
264
|
},
|
|
265
265
|
"vendorChunk": {
|
|
266
266
|
"type": "boolean",
|
|
267
|
-
"description": "Generate a seperate bundle containing only vendor libraries. This option should only used for development.",
|
|
267
|
+
"description": "Generate a seperate bundle containing only vendor libraries. This option should only be used for development to reduce the incremental compilation time.",
|
|
268
268
|
"default": false
|
|
269
269
|
},
|
|
270
270
|
"commonChunk": {
|
|
@@ -96,6 +96,11 @@ export interface Schema {
|
|
|
96
96
|
* The name of the TypeScript configuration file.
|
|
97
97
|
*/
|
|
98
98
|
tsConfig: string;
|
|
99
|
+
/**
|
|
100
|
+
* Generate a seperate bundle containing only vendor libraries. This option should only be
|
|
101
|
+
* used for development to reduce the incremental compilation time.
|
|
102
|
+
*/
|
|
103
|
+
vendorChunk?: boolean;
|
|
99
104
|
/**
|
|
100
105
|
* Adds more details to output logging.
|
|
101
106
|
*/
|
|
@@ -116,6 +116,11 @@
|
|
|
116
116
|
"description": "URL where files will be deployed.",
|
|
117
117
|
"x-deprecated": "Use \"baseHref\" browser builder option, \"APP_BASE_HREF\" DI token or a combination of both instead. For more information, see https://angular.io/guide/deployment#the-deploy-url."
|
|
118
118
|
},
|
|
119
|
+
"vendorChunk": {
|
|
120
|
+
"type": "boolean",
|
|
121
|
+
"description": "Generate a seperate bundle containing only vendor libraries. This option should only be used for development to reduce the incremental compilation time.",
|
|
122
|
+
"default": false
|
|
123
|
+
},
|
|
119
124
|
"verbose": {
|
|
120
125
|
"type": "boolean",
|
|
121
126
|
"description": "Adds more details to output logging.",
|