@angular-devkit/architect 0.2000.0-rc.0 → 0.2000.0-rc.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.
@@ -273,7 +273,8 @@ async function getBuilder(builderPath) {
273
273
  return localRequire(builderPath);
274
274
  }
275
275
  catch (e) {
276
- if (e.code === 'ERR_REQUIRE_ESM') {
276
+ if (e.code === 'ERR_REQUIRE_ESM' ||
277
+ e.code === 'ERR_REQUIRE_ASYNC_MODULE') {
277
278
  // Load the ESM configuration file using the TypeScript dynamic import workaround.
278
279
  // Once TypeScript provides support for keeping the dynamic import this workaround can be
279
280
  // changed to a direct dynamic import.
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@angular-devkit/architect",
3
- "version": "0.2000.0-rc.0",
3
+ "version": "0.2000.0-rc.2",
4
4
  "description": "Angular Build Facade",
5
5
  "experimental": true,
6
6
  "main": "src/index.js",
7
7
  "typings": "src/index.d.ts",
8
8
  "dependencies": {
9
- "@angular-devkit/core": "20.0.0-rc.0",
9
+ "@angular-devkit/core": "20.0.0-rc.2",
10
10
  "rxjs": "7.8.2"
11
11
  },
12
12
  "builders": "./builders/builders.json",
@@ -21,7 +21,7 @@
21
21
  "type": "git",
22
22
  "url": "https://github.com/angular/angular-cli.git"
23
23
  },
24
- "packageManager": "pnpm@9.15.6",
24
+ "packageManager": "pnpm@9.15.9",
25
25
  "engines": {
26
26
  "node": "^20.11.1 || ^22.11.0 || >=24.0.0",
27
27
  "npm": "^6.11.0 || ^7.5.6 || >=8.0.0",