@angular-builders/custom-esbuild 17.1.3-beta.2 → 18.0.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.
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.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": [
@@ -39,20 +39,20 @@
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": "workspace:*",
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
- "gitHead": "ab6ec5af02c207a8e2d6afa12030f405e41d4df0"
57
+ }
58
58
  }
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2018 Evgeny Barabanov
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.