@angular-builders/custom-esbuild 17.1.3-beta.2 → 18.0.0-beta.3

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/README.md CHANGED
@@ -30,7 +30,7 @@ Allow customizing ESBuild configuration
30
30
 
31
31
  ## Prerequisites:
32
32
 
33
- - [Angular CLI 17.1](https://www.npmjs.com/package/@angular/cli)
33
+ - [Angular CLI 18](https://www.npmjs.com/package/@angular/cli)
34
34
 
35
35
  # Usage
36
36
 
@@ -1,9 +1,5 @@
1
1
  import { BuilderContext } from '@angular-devkit/architect';
2
- import { json } from '@angular-devkit/core';
3
2
  import { CustomEsbuildApplicationSchema } from '../custom-esbuild-schema';
4
- export declare function buildCustomEsbuildApplication(options: CustomEsbuildApplicationSchema, context: BuilderContext): import("rxjs").Observable<import("@angular-devkit/build-angular/src/builders/application").ApplicationBuilderOutput>;
5
- declare const _default: import("@angular-devkit/architect/src/internal").Builder<json.JsonObject & import("@angular-devkit/build-angular").ApplicationBuilderOptions & {
6
- plugins?: string[];
7
- indexHtmlTransformer?: string;
8
- }>;
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>;
9
5
  export default _default;
@@ -615,14 +615,14 @@
615
615
  },
616
616
  "output": {
617
617
  "type": "string",
618
+ "default": "",
618
619
  "description": "Absolute path within the output."
619
620
  }
620
621
  },
621
622
  "additionalProperties": false,
622
623
  "required": [
623
624
  "glob",
624
- "input",
625
- "output"
625
+ "input"
626
626
  ]
627
627
  },
628
628
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular-builders/custom-esbuild",
3
- "version": "17.1.3-beta.2",
3
+ "version": "18.0.0-beta.3",
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": [
@@ -39,20 +39,21 @@
39
39
  },
40
40
  "builders": "builders.json",
41
41
  "dependencies": {
42
- "@angular-builders/common": "1.0.3-beta.1",
43
- "@angular-devkit/architect": ">=0.1701.0 < 0.1800.0",
44
- "@angular-devkit/build-angular": "^17.1.0",
45
- "@angular-devkit/core": "^17.1.0"
42
+ "@angular-builders/common": "2.0.0-beta.1",
43
+ "@angular-devkit/architect": ">=0.1800.0 < 0.1900.0",
44
+ "@angular-devkit/build-angular": "^18.0.0",
45
+ "@angular-devkit/core": "^18.0.0"
46
46
  },
47
47
  "peerDependencies": {
48
- "@angular/compiler-cli": "^17.1.0"
48
+ "@angular/compiler-cli": "^18.0.0"
49
49
  },
50
50
  "devDependencies": {
51
+ "@angular/build": "^18.0.0",
51
52
  "esbuild": "0.20.2",
52
53
  "jest": "29.7.0",
53
54
  "rimraf": "^5.0.0",
54
55
  "ts-node": "^10.0.0",
55
56
  "typescript": "5.4.5"
56
57
  },
57
- "gitHead": "ab6ec5af02c207a8e2d6afa12030f405e41d4df0"
58
+ "gitHead": "6c442d8451175c427851d69bcafedcd0be1778e1"
58
59
  }