@angular-builders/custom-esbuild 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.
|
@@ -152,7 +152,7 @@
|
|
|
152
152
|
"description": "Automatically clear the terminal screen during rebuilds."
|
|
153
153
|
},
|
|
154
154
|
"optimization": {
|
|
155
|
-
"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.
|
|
155
|
+
"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.",
|
|
156
156
|
"default": true,
|
|
157
157
|
"x-user-analytics": "ep.ng_optimization",
|
|
158
158
|
"oneOf": [
|
|
@@ -297,7 +297,7 @@
|
|
|
297
297
|
"default": true
|
|
298
298
|
},
|
|
299
299
|
"sourceMap": {
|
|
300
|
-
"description": "Output source maps for scripts and styles. For more information, see https://angular.
|
|
300
|
+
"description": "Output source maps for scripts and styles. For more information, see https://angular.dev/reference/configs/workspace-config#source-map-configuration.",
|
|
301
301
|
"default": false,
|
|
302
302
|
"oneOf": [
|
|
303
303
|
{
|
|
@@ -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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular-builders/custom-esbuild",
|
|
3
|
-
"version": "18.0.0",
|
|
3
|
+
"version": "18.0.1-beta.0",
|
|
4
4
|
"description": "Custom esbuild builders for Angular build facade. Allow to modify Angular build configuration without ejecting it",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"files": [
|
|
@@ -49,11 +49,11 @@
|
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@angular/build": "^18.0.0",
|
|
52
|
-
"esbuild": "0.
|
|
52
|
+
"esbuild": "0.21.5",
|
|
53
53
|
"jest": "29.7.0",
|
|
54
54
|
"rimraf": "^5.0.0",
|
|
55
55
|
"ts-node": "^10.0.0",
|
|
56
56
|
"typescript": "5.4.5"
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "1802e2324405bb47c9cbda693b729094019944a7"
|
|
59
59
|
}
|