@angular-builders/custom-webpack 19.0.1-beta.0 → 19.0.1-beta.1
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/index.d.ts +1 -1
- package/dist/dev-server/index.d.ts +1 -1
- package/dist/dev-server/schema.json +3 -3
- package/dist/extract-i18n/index.d.ts +1 -1
- package/dist/karma/index.d.ts +1 -1
- package/dist/karma/schema.json +5 -0
- package/dist/server/index.d.ts +1 -1
- package/package.json +4 -4
package/dist/browser/index.d.ts
CHANGED
|
@@ -4,5 +4,5 @@ import { json } from '@angular-devkit/core';
|
|
|
4
4
|
import { CustomWebpackSchema } from '../custom-webpack-schema';
|
|
5
5
|
export type CustomWebpackBrowserSchema = BrowserBuilderOptions & CustomWebpackSchema;
|
|
6
6
|
export declare const buildCustomWebpackBrowser: (options: CustomWebpackBrowserSchema, context: BuilderContext) => ReturnType<typeof executeBrowserBuilder>;
|
|
7
|
-
declare const _default: import("@angular-devkit/architect
|
|
7
|
+
declare const _default: import("@angular-devkit/architect").Builder<json.JsonObject & BrowserBuilderOptions & CustomWebpackSchema>;
|
|
8
8
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { DevServerBuilderOptions } from '@angular-devkit/build-angular';
|
|
2
2
|
import { json } from '@angular-devkit/core';
|
|
3
|
-
declare const _default: import("@angular-devkit/architect
|
|
3
|
+
declare const _default: import("@angular-devkit/architect").Builder<DevServerBuilderOptions & json.JsonObject>;
|
|
4
4
|
export default _default;
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
},
|
|
68
68
|
"allowedHosts": {
|
|
69
69
|
"type": "array",
|
|
70
|
-
"description": "List of hosts that are allowed to access the dev server.
|
|
70
|
+
"description": "List of hosts that are allowed to access the dev server.",
|
|
71
71
|
"default": [],
|
|
72
72
|
"items": {
|
|
73
73
|
"type": "string"
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
},
|
|
80
80
|
"disableHostCheck": {
|
|
81
81
|
"type": "boolean",
|
|
82
|
-
"description": "Don't verify connected clients are part of allowed hosts.
|
|
82
|
+
"description": "Don't verify connected clients are part of allowed hosts.",
|
|
83
83
|
"default": false
|
|
84
84
|
},
|
|
85
85
|
"hmr": {
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
},
|
|
111
111
|
"forceEsbuild": {
|
|
112
112
|
"type": "boolean",
|
|
113
|
-
"description": "Force the development server to use the 'browser-esbuild' builder when building.
|
|
113
|
+
"description": "Force the development server to use the 'browser-esbuild' builder when building.",
|
|
114
114
|
"default": false
|
|
115
115
|
},
|
|
116
116
|
"prebundle": {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ExtractI18nBuilderOptions } from '@angular-devkit/build-angular';
|
|
2
2
|
import { json } from '@angular-devkit/core';
|
|
3
|
-
declare const _default: import("@angular-devkit/architect
|
|
3
|
+
declare const _default: import("@angular-devkit/architect").Builder<ExtractI18nBuilderOptions & json.JsonObject & {
|
|
4
4
|
buildTarget: string;
|
|
5
5
|
}>;
|
|
6
6
|
export default _default;
|
package/dist/karma/index.d.ts
CHANGED
|
@@ -7,5 +7,5 @@ import { json } from '@angular-devkit/core';
|
|
|
7
7
|
import { CustomWebpackSchema } from '../custom-webpack-schema';
|
|
8
8
|
export type CustomWebpackKarmaBuildSchema = KarmaBuilderOptions & CustomWebpackSchema;
|
|
9
9
|
export declare const buildCustomWebpackKarma: (options: CustomWebpackKarmaBuildSchema, context: BuilderContext) => ReturnType<typeof executeKarmaBuilder>;
|
|
10
|
-
declare const _default: import("@angular-devkit/architect
|
|
10
|
+
declare const _default: import("@angular-devkit/architect").Builder<json.JsonObject & KarmaBuilderOptions & CustomWebpackSchema>;
|
|
11
11
|
export default _default;
|
package/dist/karma/schema.json
CHANGED
|
@@ -298,6 +298,11 @@
|
|
|
298
298
|
"type": "string",
|
|
299
299
|
"description": "TypeScript configuration for Web Worker modules."
|
|
300
300
|
},
|
|
301
|
+
"aot": {
|
|
302
|
+
"type": "boolean",
|
|
303
|
+
"description": "Run tests using Ahead of Time compilation.",
|
|
304
|
+
"default": false
|
|
305
|
+
},
|
|
301
306
|
"customWebpackConfig": {
|
|
302
307
|
"description": "Custom webpack configuration",
|
|
303
308
|
"default": false,
|
package/dist/server/index.d.ts
CHANGED
|
@@ -7,5 +7,5 @@ import { json } from '@angular-devkit/core';
|
|
|
7
7
|
import { CustomWebpackSchema } from '../custom-webpack-schema';
|
|
8
8
|
export type CustomWebpackServerSchema = ServerBuilderOptions & CustomWebpackSchema;
|
|
9
9
|
export declare const buildCustomWebpackServer: (options: CustomWebpackServerSchema, context: BuilderContext) => ReturnType<typeof executeServerBuilder>;
|
|
10
|
-
declare const _default: import("@angular-devkit/architect
|
|
10
|
+
declare const _default: import("@angular-devkit/architect").Builder<json.JsonObject & ServerBuilderOptions & CustomWebpackSchema>;
|
|
11
11
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular-builders/custom-webpack",
|
|
3
|
-
"version": "19.0.1-beta.
|
|
3
|
+
"version": "19.0.1-beta.1",
|
|
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": [
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
},
|
|
41
41
|
"builders": "builders.json",
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@angular-builders/common": "3.0.0",
|
|
43
|
+
"@angular-builders/common": "3.0.1-beta.0",
|
|
44
44
|
"@angular-devkit/architect": ">=0.1900.0 < 0.2000.0",
|
|
45
45
|
"@angular-devkit/build-angular": "^19.0.0",
|
|
46
46
|
"@angular-devkit/core": "^19.0.0",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"jest": "29.7.0",
|
|
56
56
|
"rimraf": "^5.0.0",
|
|
57
57
|
"ts-node": "^10.0.0",
|
|
58
|
-
"typescript": "5.
|
|
58
|
+
"typescript": "5.8.3"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "9e0f7779a4e1440831c0791383037ecda66065e3"
|
|
61
61
|
}
|