@angular-builders/custom-esbuild 21.1.0-beta.8 → 21.1.0-beta.9

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.
Files changed (2) hide show
  1. package/README.md +3 -0
  2. package/package.json +4 -3
package/README.md CHANGED
@@ -21,6 +21,9 @@ Allow customizing ESBuild configuration
21
21
 
22
22
  # This documentation is for the latest major version only
23
23
 
24
+ > ⚠️ **Version alignment:** The major version of `@angular-builders/custom-esbuild` must match the major version of `@angular/core` in your project. For example, Angular 19 requires `@angular-builders/custom-esbuild`@19.x, Angular 20 requires `@angular-builders/custom-esbuild`@20.x, etc. Using a mismatched version is the most common source of issues.
25
+
26
+
24
27
  ## Previous versions
25
28
 
26
29
  <details>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular-builders/custom-esbuild",
3
- "version": "21.1.0-beta.8",
3
+ "version": "21.1.0-beta.9",
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,13 +39,14 @@
39
39
  },
40
40
  "builders": "builders.json",
41
41
  "dependencies": {
42
- "@angular-builders/common": "5.0.4-beta.2",
42
+ "@angular-builders/common": "5.0.4-beta.3",
43
43
  "@angular-devkit/architect": ">=0.2100.0 < 0.2200.0",
44
44
  "@angular-devkit/core": "^21.0.0",
45
45
  "@angular/build": "^21.0.0"
46
46
  },
47
47
  "peerDependencies": {
48
48
  "@angular/compiler-cli": "^21.0.0",
49
+ "rxjs": ">=7.0.0",
49
50
  "vitest": ">=2"
50
51
  },
51
52
  "devDependencies": {
@@ -55,5 +56,5 @@
55
56
  "ts-node": "^10.0.0",
56
57
  "typescript": "5.9.3"
57
58
  },
58
- "gitHead": "a05d1454ea03483a3d40a984eca46fdae20de338"
59
+ "gitHead": "c5a98693949c34b582d7f5b3a1816b04f9469310"
59
60
  }