@angular-builders/custom-esbuild 19.1.0-beta.0 → 19.1.0-beta.2

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.
@@ -1,5 +1,9 @@
1
1
  import { BuilderContext } from '@angular-devkit/architect';
2
+ import { json } from '@angular-devkit/core';
2
3
  import { CustomEsbuildApplicationSchema } from '../custom-esbuild-schema';
3
- export declare function buildCustomEsbuildApplication(options: CustomEsbuildApplicationSchema, context: BuilderContext): import("rxjs").Observable<any>;
4
- declare const _default: import("@angular-devkit/architect/src/internal").Builder<any>;
4
+ export declare function buildCustomEsbuildApplication(options: CustomEsbuildApplicationSchema, context: BuilderContext): import("rxjs").Observable<import("@angular-devkit/architect").BuilderOutput>;
5
+ declare const _default: import("@angular-devkit/architect").Builder<json.JsonObject & import("@angular-devkit/build-angular").ApplicationBuilderOptions & {
6
+ plugins?: string[];
7
+ indexHtmlTransformer?: string;
8
+ }>;
5
9
  export default _default;
@@ -17,7 +17,6 @@
17
17
  "description": "The full path for the browser entry point to the application, relative to the current workspace."
18
18
  },
19
19
  "server": {
20
- "type": "string",
21
20
  "description": "The full path for the server entry point to the application, relative to the current workspace.",
22
21
  "oneOf": [
23
22
  {
@@ -205,7 +204,7 @@
205
204
  "additionalProperties": false
206
205
  },
207
206
  "externalDependencies": {
208
- "description": "Exclude the listed external dependencies from being bundled into the bundle. Instead, the created bundle relies on these dependencies to be available during runtime.",
207
+ "description": "Exclude the listed external dependencies from being bundled into the bundle. Instead, the created bundle relies on these dependencies to be available during runtime. Note: `@foo/bar` marks all paths within the `@foo/bar` package as external, including sub-paths like `@foo/bar/baz`.",
209
208
  "type": "array",
210
209
  "items": {
211
210
  "type": "string"
@@ -4,5 +4,5 @@ import { json } from '@angular-devkit/core';
4
4
  import { Observable } from 'rxjs';
5
5
  import { CustomEsbuildDevServerSchema } from '../custom-esbuild-schema';
6
6
  export declare function executeCustomDevServerBuilder(options: CustomEsbuildDevServerSchema, context: BuilderContext): Observable<DevServerBuilderOutput>;
7
- declare const _default: import("@angular-devkit/architect/src/internal").Builder<DevServerBuilderOptions & json.JsonObject>;
7
+ declare const _default: import("@angular-devkit/architect").Builder<DevServerBuilderOptions & json.JsonObject>;
8
8
  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. This option has no effect when using the 'application' or other esbuild-based builders.",
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. This option has no effect when using the 'application' or other esbuild-based builders.",
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. This is a developer preview option for the esbuild-based build system.",
113
+ "description": "Force the development server to use the 'browser-esbuild' builder when building.",
114
114
  "default": false
115
115
  },
116
116
  "prebundle": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular-builders/custom-esbuild",
3
- "version": "19.1.0-beta.0",
3
+ "version": "19.1.0-beta.2",
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": [
@@ -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"
@@ -50,11 +50,11 @@
50
50
  },
51
51
  "devDependencies": {
52
52
  "@angular/build": "^19.0.0",
53
- "esbuild": "0.24.0",
53
+ "esbuild": "0.25.1",
54
54
  "jest": "29.7.0",
55
55
  "rimraf": "^5.0.0",
56
56
  "ts-node": "^10.0.0",
57
- "typescript": "5.6.2"
57
+ "typescript": "5.8.3"
58
58
  },
59
- "gitHead": "4b5468f24f2c91ebc2657599f9eef74d0017e648"
59
+ "gitHead": "9e0f7779a4e1440831c0791383037ecda66065e3"
60
60
  }