@angular-builders/custom-webpack 16.0.0-beta.0 → 16.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 +4 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -33,6 +33,8 @@ Allow customizing build configuration without ejecting webpack configuration (`n
|
|
|
33
33
|
<details>
|
|
34
34
|
<summary>Click to expand</summary>
|
|
35
35
|
|
|
36
|
+
- [Version 15](https://github.com/just-jeb/angular-builders/blob/15.x.x/packages/custom-webpack/README.md)
|
|
37
|
+
- [Version 14](https://github.com/just-jeb/angular-builders/blob/14.x.x/packages/custom-webpack/README.md)
|
|
36
38
|
- [Version 13](https://github.com/just-jeb/angular-builders/blob/13.x.x/packages/custom-webpack/README.md)
|
|
37
39
|
- [Version 12](https://github.com/just-jeb/angular-builders/blob/12.x.x/packages/custom-webpack/README.md)
|
|
38
40
|
- [Version 11](https://github.com/just-jeb/angular-builders/blob/11.x.x/packages/custom-webpack/README.md)
|
|
@@ -47,7 +49,7 @@ Allow customizing build configuration without ejecting webpack configuration (`n
|
|
|
47
49
|
|
|
48
50
|
## Prerequisites:
|
|
49
51
|
|
|
50
|
-
- [Angular CLI
|
|
52
|
+
- [Angular CLI 16](https://www.npmjs.com/package/@angular/cli)
|
|
51
53
|
|
|
52
54
|
# Usage
|
|
53
55
|
|
|
@@ -456,7 +458,7 @@ Function signature is as following:
|
|
|
456
458
|
If `indexTransform` is written in TypeScript, it is the application's `tsConfig` file which will be use by `tsnode` for `indexTransform.ts` execution.
|
|
457
459
|
|
|
458
460
|
```typescript
|
|
459
|
-
(options: TargetOptions, indexHtmlContent: string) => string|Promise<string>;
|
|
461
|
+
(options: TargetOptions, indexHtmlContent: string) => string | Promise<string>;
|
|
460
462
|
```
|
|
461
463
|
|
|
462
464
|
or, in other words, the function receives target options and original `index.html` content (generated by Angular CLI) and returns a new content as `string` or `Promise`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular-builders/custom-webpack",
|
|
3
|
-
"version": "16.0.0-beta.
|
|
3
|
+
"version": "16.0.0-beta.2",
|
|
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": [
|
|
@@ -53,8 +53,8 @@
|
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"jest": "29.5.0",
|
|
56
|
-
"rimraf": "^
|
|
56
|
+
"rimraf": "^5.0.0",
|
|
57
57
|
"typescript": "5.0.4"
|
|
58
58
|
},
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "dae4a578d9169cb538a38dd7b959eb8b167d8e84"
|
|
60
60
|
}
|