@angular-builders/custom-webpack 18.0.0 → 18.0.1-beta.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/dist/browser/schema.json
CHANGED
|
@@ -141,7 +141,7 @@
|
|
|
141
141
|
"additionalProperties": false
|
|
142
142
|
},
|
|
143
143
|
"optimization": {
|
|
144
|
-
"description": "Enables optimization of the build output. Including minification of scripts and styles, tree-shaking, dead-code elimination, inlining of critical CSS and fonts inlining. For more information, see https://angular.
|
|
144
|
+
"description": "Enables optimization of the build output. Including minification of scripts and styles, tree-shaking, dead-code elimination, inlining of critical CSS and fonts inlining. For more information, see https://angular.dev/reference/configs/workspace-config#optimization-configuration.",
|
|
145
145
|
"default": true,
|
|
146
146
|
"x-user-analytics": "ep.ng_optimization",
|
|
147
147
|
"oneOf": [
|
|
@@ -229,7 +229,7 @@
|
|
|
229
229
|
"default": true
|
|
230
230
|
},
|
|
231
231
|
"sourceMap": {
|
|
232
|
-
"description": "Output source maps for scripts and styles. For more information, see https://angular.
|
|
232
|
+
"description": "Output source maps for scripts and styles. For more information, see https://angular.dev/reference/configs/workspace-config#source-map-configuration.",
|
|
233
233
|
"default": false,
|
|
234
234
|
"oneOf": [
|
|
235
235
|
{
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
"proxyConfig": {
|
|
29
29
|
"type": "string",
|
|
30
|
-
"description": "Proxy configuration file. For more information, see https://angular.
|
|
30
|
+
"description": "Proxy configuration file. For more information, see https://angular.dev/tools/cli/serve#proxying-to-a-backend-server."
|
|
31
31
|
},
|
|
32
32
|
"ssl": {
|
|
33
33
|
"type": "boolean",
|
|
@@ -102,6 +102,19 @@
|
|
|
102
102
|
"type": "number",
|
|
103
103
|
"description": "Enable and define the file watching poll time period in milliseconds."
|
|
104
104
|
},
|
|
105
|
+
"inspect": {
|
|
106
|
+
"default": false,
|
|
107
|
+
"description": "Activate debugging inspector. This option only has an effect when 'SSR' or 'SSG' are enabled.",
|
|
108
|
+
"oneOf": [
|
|
109
|
+
{
|
|
110
|
+
"type": "string",
|
|
111
|
+
"description": "Activate the inspector on host and port in the format of `[[host:]port]`. See the security warning in https://nodejs.org/docs/latest-v22.x/api/cli.html#warning-binding-inspector-to-a-public-ipport-combination-is-insecure regarding the host parameter usage."
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"type": "boolean"
|
|
115
|
+
}
|
|
116
|
+
]
|
|
117
|
+
},
|
|
105
118
|
"forceEsbuild": {
|
|
106
119
|
"type": "boolean",
|
|
107
120
|
"description": "Force the development server to use the 'browser-esbuild' builder when building. This is a developer preview option for the esbuild-based build system.",
|
package/dist/karma/schema.json
CHANGED
|
@@ -163,7 +163,7 @@
|
|
|
163
163
|
"description": "Globs of files to exclude, relative to the project root."
|
|
164
164
|
},
|
|
165
165
|
"sourceMap": {
|
|
166
|
-
"description": "Output source maps for scripts and styles. For more information, see https://angular.
|
|
166
|
+
"description": "Output source maps for scripts and styles. For more information, see https://angular.dev/reference/configs/workspace-config#source-map-configuration.",
|
|
167
167
|
"default": true,
|
|
168
168
|
"oneOf": [
|
|
169
169
|
{
|
package/dist/server/schema.json
CHANGED
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"additionalProperties": false
|
|
49
49
|
},
|
|
50
50
|
"optimization": {
|
|
51
|
-
"description": "Enables optimization of the build output. Including minification of scripts and styles, tree-shaking and dead-code elimination. For more information, see https://angular.
|
|
51
|
+
"description": "Enables optimization of the build output. Including minification of scripts and styles, tree-shaking and dead-code elimination. For more information, see https://angular.dev/reference/configs/workspace-config#optimization-configuration.",
|
|
52
52
|
"default": true,
|
|
53
53
|
"x-user-analytics": "ep.ng_optimization",
|
|
54
54
|
"oneOf": [
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"description": "The path where style resources will be placed, relative to outputPath."
|
|
91
91
|
},
|
|
92
92
|
"sourceMap": {
|
|
93
|
-
"description": "Output source maps for scripts and styles. For more information, see https://angular.
|
|
93
|
+
"description": "Output source maps for scripts and styles. For more information, see https://angular.dev/reference/configs/workspace-config#source-map-configuration.",
|
|
94
94
|
"default": false,
|
|
95
95
|
"oneOf": [
|
|
96
96
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular-builders/custom-webpack",
|
|
3
|
-
"version": "18.0.0",
|
|
3
|
+
"version": "18.0.1-beta.0",
|
|
4
4
|
"description": "Custom webpack builders for Angular build facade. Allow to modify Angular build configuration without ejecting it",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"files": [
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@angular-devkit/build-angular": "^18.0.0",
|
|
46
46
|
"@angular-devkit/core": "^18.0.0",
|
|
47
47
|
"lodash": "^4.17.15",
|
|
48
|
-
"webpack-merge": "^
|
|
48
|
+
"webpack-merge": "^6.0.0"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {
|
|
51
51
|
"@angular/compiler-cli": "^18.0.0"
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"ts-node": "^10.0.0",
|
|
58
58
|
"typescript": "5.4.5"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "a05bf0a1e662cbb78b57307d7469f47cc014660a"
|
|
61
61
|
}
|