@nx/angular 22.7.0-pr.33655.12b0dd7 → 22.7.0-pr.33655.2b96277

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 (61) hide show
  1. package/assets.json +23 -0
  2. package/executors.json +62 -62
  3. package/generators.json +185 -185
  4. package/migrations.json +2412 -2412
  5. package/ng-package.json +19 -19
  6. package/package.json +10 -10
  7. package/project.json +4 -55
  8. package/src/builders/dev-server/schema.json +163 -163
  9. package/src/builders/webpack-browser/schema.json +567 -567
  10. package/src/builders/webpack-server/schema.json +303 -303
  11. package/src/executors/application/schema.json +732 -732
  12. package/src/executors/browser-esbuild/schema.json +548 -548
  13. package/src/executors/delegate-build/schema.json +31 -31
  14. package/src/executors/extract-i18n/schema.json +47 -47
  15. package/src/executors/module-federation-dev-server/schema.json +164 -164
  16. package/src/executors/module-federation-ssr-dev-server/schema.json +119 -119
  17. package/src/executors/ng-packagr-lite/schema.json +35 -35
  18. package/src/executors/package/schema.json +35 -35
  19. package/src/executors/unit-test/schema.json +305 -305
  20. package/src/generators/add-linting/schema.json +48 -48
  21. package/src/generators/application/schema.json +188 -188
  22. package/src/generators/component/schema.json +123 -123
  23. package/src/generators/component-story/schema.json +50 -50
  24. package/src/generators/component-test/schema.json +52 -52
  25. package/src/generators/convert-to-application-executor/schema.json +23 -23
  26. package/src/generators/convert-to-rspack/schema.json +27 -27
  27. package/src/generators/convert-to-with-mf/schema.json +30 -30
  28. package/src/generators/cypress-component-configuration/schema.json +43 -43
  29. package/src/generators/directive/schema.json +89 -89
  30. package/src/generators/federate-module/schema.json +80 -80
  31. package/src/generators/host/schema.json +189 -189
  32. package/src/generators/init/schema.json +31 -31
  33. package/src/generators/library/schema.json +189 -189
  34. package/src/generators/library-secondary-entry-point/schema.json +40 -40
  35. package/src/generators/move/schema.json +53 -53
  36. package/src/generators/ng-add/schema.json +62 -63
  37. package/src/generators/ngrx/schema.json +99 -99
  38. package/src/generators/ngrx-feature-store/schema.json +69 -69
  39. package/src/generators/ngrx-root-store/schema.json +68 -68
  40. package/src/generators/pipe/schema.json +75 -75
  41. package/src/generators/remote/schema.json +182 -182
  42. package/src/generators/scam/schema.json +120 -120
  43. package/src/generators/scam-directive/schema.json +82 -82
  44. package/src/generators/scam-pipe/schema.json +64 -64
  45. package/src/generators/scam-to-standalone/schema.json +29 -29
  46. package/src/generators/setup-mf/schema.json +90 -90
  47. package/src/generators/setup-ssr/schema.json +70 -70
  48. package/src/generators/setup-tailwind/schema.json +39 -39
  49. package/src/generators/stories/schema.json +53 -53
  50. package/src/generators/storybook-configuration/schema.json +80 -80
  51. package/src/generators/utils/add-vitest.d.ts.map +1 -1
  52. package/src/generators/utils/add-vitest.js +6 -0
  53. package/src/generators/web-worker/schema.json +45 -45
  54. package/src/plugins/utils/vitest.d.ts +1 -1
  55. package/src/plugins/utils/vitest.d.ts.map +1 -1
  56. package/src/plugins/utils/vitest.js +3 -0
  57. package/src/utils/backward-compatible-versions.d.ts.map +1 -1
  58. package/src/utils/backward-compatible-versions.js +2 -0
  59. package/src/utils/versions.d.ts +1 -0
  60. package/src/utils/versions.d.ts.map +1 -1
  61. package/src/utils/versions.js +4 -1
@@ -1,83 +1,83 @@
1
1
  {
2
- "$schema": "https://json-schema.org/schema",
3
- "$id": "NxAngularStorybookConfigurationGenerator",
4
- "title": "Adds Storybook configuration to a project.",
5
- "description": "Adds Storybook configuration to a project to be able to use and create stories.",
6
- "cli": "nx",
7
- "type": "object",
8
- "properties": {
9
- "project": {
10
- "type": "string",
11
- "aliases": ["name", "projectName"],
12
- "description": "Project for which to generate Storybook configuration.",
13
- "$default": {
14
- "$source": "argv",
15
- "index": 0
16
- },
17
- "x-prompt": "For which project do you want to generate Storybook configuration?",
18
- "x-dropdown": "projects",
19
- "x-priority": "important"
2
+ "$schema": "https://json-schema.org/schema",
3
+ "$id": "NxAngularStorybookConfigurationGenerator",
4
+ "title": "Adds Storybook configuration to a project.",
5
+ "description": "Adds Storybook configuration to a project to be able to use and create stories.",
6
+ "cli": "nx",
7
+ "type": "object",
8
+ "properties": {
9
+ "project": {
10
+ "type": "string",
11
+ "aliases": ["name", "projectName"],
12
+ "description": "Project for which to generate Storybook configuration.",
13
+ "$default": {
14
+ "$source": "argv",
15
+ "index": 0
16
+ },
17
+ "x-prompt": "For which project do you want to generate Storybook configuration?",
18
+ "x-dropdown": "projects",
19
+ "x-priority": "important"
20
+ },
21
+ "interactionTests": {
22
+ "type": "boolean",
23
+ "description": "Set up Storybook interaction tests.",
24
+ "x-prompt": "Do you want to set up Storybook interaction tests?",
25
+ "alias": ["configureTestRunner"],
26
+ "x-priority": "important",
27
+ "default": true
28
+ },
29
+ "generateStories": {
30
+ "type": "boolean",
31
+ "description": "Specifies whether to automatically generate `*.stories.ts` files for components declared in this project or not.",
32
+ "x-prompt": "Automatically generate *.stories.ts files for components declared in this project?",
33
+ "default": true,
34
+ "x-priority": "important"
35
+ },
36
+ "configureStaticServe": {
37
+ "type": "boolean",
38
+ "description": "Specifies whether to configure a static file server target for serving storybook. Helpful for speeding up CI build/test times.",
39
+ "x-prompt": "Configure a static file server for the storybook instance?",
40
+ "default": true,
41
+ "x-priority": "important"
42
+ },
43
+ "linter": {
44
+ "description": "The tool to use for running lint checks.",
45
+ "type": "string",
46
+ "enum": ["eslint", "none"],
47
+ "default": "eslint"
48
+ },
49
+ "tsConfiguration": {
50
+ "type": "boolean",
51
+ "description": "Configure your project with TypeScript. Generate main.ts and preview.ts files, instead of main.js and preview.js.",
52
+ "default": true,
53
+ "x-priority": "important"
54
+ },
55
+ "skipFormat": {
56
+ "description": "Skip formatting files.",
57
+ "type": "boolean",
58
+ "default": false,
59
+ "x-priority": "internal"
60
+ },
61
+ "ignorePaths": {
62
+ "type": "array",
63
+ "description": "Paths to ignore when looking for components.",
64
+ "items": {
65
+ "type": "string",
66
+ "description": "Path to ignore."
67
+ },
68
+ "default": [
69
+ "*.stories.ts,*.stories.tsx,*.stories.js,*.stories.jsx,*.stories.mdx"
70
+ ],
71
+ "examples": [
72
+ "apps/my-app/src/not-stories/**",
73
+ "**/**/src/**/not-stories/**",
74
+ "libs/my-lib/**/*.something.ts",
75
+ "**/**/src/**/*.other.*",
76
+ "libs/my-lib/src/not-stories/**,**/**/src/**/*.other.*,apps/my-app/**/*.something.ts"
77
+ ]
78
+ }
20
79
  },
21
- "interactionTests": {
22
- "type": "boolean",
23
- "description": "Set up Storybook interaction tests.",
24
- "x-prompt": "Do you want to set up Storybook interaction tests?",
25
- "alias": ["configureTestRunner"],
26
- "x-priority": "important",
27
- "default": true
28
- },
29
- "generateStories": {
30
- "type": "boolean",
31
- "description": "Specifies whether to automatically generate `*.stories.ts` files for components declared in this project or not.",
32
- "x-prompt": "Automatically generate *.stories.ts files for components declared in this project?",
33
- "default": true,
34
- "x-priority": "important"
35
- },
36
- "configureStaticServe": {
37
- "type": "boolean",
38
- "description": "Specifies whether to configure a static file server target for serving storybook. Helpful for speeding up CI build/test times.",
39
- "x-prompt": "Configure a static file server for the storybook instance?",
40
- "default": true,
41
- "x-priority": "important"
42
- },
43
- "linter": {
44
- "description": "The tool to use for running lint checks.",
45
- "type": "string",
46
- "enum": ["eslint", "none"],
47
- "default": "eslint"
48
- },
49
- "tsConfiguration": {
50
- "type": "boolean",
51
- "description": "Configure your project with TypeScript. Generate main.ts and preview.ts files, instead of main.js and preview.js.",
52
- "default": true,
53
- "x-priority": "important"
54
- },
55
- "skipFormat": {
56
- "description": "Skip formatting files.",
57
- "type": "boolean",
58
- "default": false,
59
- "x-priority": "internal"
60
- },
61
- "ignorePaths": {
62
- "type": "array",
63
- "description": "Paths to ignore when looking for components.",
64
- "items": {
65
- "type": "string",
66
- "description": "Path to ignore."
67
- },
68
- "default": [
69
- "*.stories.ts,*.stories.tsx,*.stories.js,*.stories.jsx,*.stories.mdx"
70
- ],
71
- "examples": [
72
- "apps/my-app/src/not-stories/**",
73
- "**/**/src/**/not-stories/**",
74
- "libs/my-lib/**/*.something.ts",
75
- "**/**/src/**/*.other.*",
76
- "libs/my-lib/src/not-stories/**,**/**/src/**/*.other.*,apps/my-app/**/*.something.ts"
77
- ]
78
- }
79
- },
80
- "additionalProperties": false,
81
- "required": ["project"],
82
- "examplesFile": "../../../docs/storybook-configuration-examples.md"
80
+ "additionalProperties": false,
81
+ "required": ["project"],
82
+ "examplesFile": "../../../docs/storybook-configuration-examples.md"
83
83
  }
@@ -1 +1 @@
1
- {"version":3,"file":"add-vitest.d.ts","sourceRoot":"","sources":["../../../../../../packages/angular/src/generators/utils/add-vitest.ts"],"names":[],"mappings":"AAAA,OAAO,EASL,KAAK,IAAI,EAKV,MAAM,YAAY,CAAC;AAUpB,MAAM,MAAM,uBAAuB,GAAG;IACpC,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,eAAe,EAAE,OAAO,CAAC;IACzB,2BAA2B,CAAC,EAAE,OAAO,CAAC;CACvC,CAAC;AAEF,MAAM,MAAM,sBAAsB,GAAG;IACnC,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,OAAO,CAAC;IACpB,eAAe,EAAE,OAAO,CAAC;IACzB,MAAM,EAAE,OAAO,CAAC;IAChB,QAAQ,EAAE,OAAO,CAAC;IAClB,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB,CAAC;AAEF,wBAAsB,gBAAgB,CACpC,IAAI,EAAE,IAAI,EACV,OAAO,EAAE,uBAAuB,GAC/B,OAAO,CAAC,IAAI,CAAC,CA2Cf;AAED,wBAAsB,eAAe,CACnC,IAAI,EAAE,IAAI,EACV,OAAO,EAAE,sBAAsB,GAC9B,OAAO,CAAC,IAAI,CAAC,CAmCf"}
1
+ {"version":3,"file":"add-vitest.d.ts","sourceRoot":"","sources":["../../../../../../packages/angular/src/generators/utils/add-vitest.ts"],"names":[],"mappings":"AAAA,OAAO,EASL,KAAK,IAAI,EAKV,MAAM,YAAY,CAAC;AAUpB,MAAM,MAAM,uBAAuB,GAAG;IACpC,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,eAAe,EAAE,OAAO,CAAC;IACzB,2BAA2B,CAAC,EAAE,OAAO,CAAC;CACvC,CAAC;AAEF,MAAM,MAAM,sBAAsB,GAAG;IACnC,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,OAAO,CAAC;IACpB,eAAe,EAAE,OAAO,CAAC;IACzB,MAAM,EAAE,OAAO,CAAC;IAChB,QAAQ,EAAE,OAAO,CAAC;IAClB,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB,CAAC;AAEF,wBAAsB,gBAAgB,CACpC,IAAI,EAAE,IAAI,EACV,OAAO,EAAE,uBAAuB,GAC/B,OAAO,CAAC,IAAI,CAAC,CA8Cf;AAED,wBAAsB,eAAe,CACnC,IAAI,EAAE,IAAI,EACV,OAAO,EAAE,sBAAsB,GAC9B,OAAO,CAAC,IAAI,CAAC,CAsCf"}
@@ -66,6 +66,9 @@ async function addVitestAngular(tree, options) {
66
66
  pkgVersions.angularDevkitVersion;
67
67
  (0, devkit_1.addDependenciesToPackageJson)(tree, {}, {
68
68
  '@angular/build': angularDevkitVersion,
69
+ // @angular/build uses rolldown which injects @oxc-project/runtime
70
+ // helpers at transform time but doesn't declare it as a dependency
71
+ '@oxc-project/runtime': versions_1.oxcProjectRuntimeVersion,
69
72
  jsdom: pkgVersions.jsdomVersion,
70
73
  vitest: pkgVersions.vitestVersion,
71
74
  }, undefined, true);
@@ -78,6 +81,9 @@ async function addVitestAnalog(tree, options) {
78
81
  (0, version_utils_1.versions)(tree).angularDevkitVersion;
79
82
  const devDependencies = {
80
83
  '@angular/build': angularDevkitVersion,
84
+ // @angular/build uses rolldown which injects @oxc-project/runtime
85
+ // helpers at transform time but doesn't declare it as a dependency
86
+ '@oxc-project/runtime': versions_1.oxcProjectRuntimeVersion,
81
87
  };
82
88
  // Add compatible vitest/jsdom versions BEFORE calling configurationGenerator
83
89
  // so that @nx/vitest respects existing versions
@@ -1,48 +1,48 @@
1
1
  {
2
- "$schema": "http://json-schema.org/draft-07/schema",
3
- "$id": "NxAngularWebWorkerGenerator",
4
- "title": "Angular Web Worker Options Schema",
5
- "description": "Creates a new, generic web worker definition in the given or default project.",
6
- "cli": "nx",
7
- "type": "object",
8
- "properties": {
9
- "path": {
10
- "type": "string",
11
- "format": "path",
12
- "description": "The path at which to create the worker file, relative to the current workspace."
2
+ "$schema": "http://json-schema.org/draft-07/schema",
3
+ "$id": "NxAngularWebWorkerGenerator",
4
+ "title": "Angular Web Worker Options Schema",
5
+ "description": "Creates a new, generic web worker definition in the given or default project.",
6
+ "cli": "nx",
7
+ "type": "object",
8
+ "properties": {
9
+ "path": {
10
+ "type": "string",
11
+ "format": "path",
12
+ "description": "The path at which to create the worker file, relative to the current workspace."
13
+ },
14
+ "project": {
15
+ "type": "string",
16
+ "description": "The name of the project.",
17
+ "$default": {
18
+ "$source": "projectName"
19
+ },
20
+ "x-dropdown": "projects",
21
+ "x-priority": "important"
22
+ },
23
+ "name": {
24
+ "type": "string",
25
+ "description": "The name of the worker.",
26
+ "$default": {
27
+ "$source": "argv",
28
+ "index": 0
29
+ },
30
+ "x-prompt": "What name would you like to use for the worker?",
31
+ "x-priority": "important"
32
+ },
33
+ "snippet": {
34
+ "type": "boolean",
35
+ "default": true,
36
+ "description": "Add a worker creation snippet in a sibling file of the same name."
37
+ },
38
+ "skipFormat": {
39
+ "description": "Skip formatting files.",
40
+ "type": "boolean",
41
+ "default": false,
42
+ "x-priority": "internal"
43
+ }
13
44
  },
14
- "project": {
15
- "type": "string",
16
- "description": "The name of the project.",
17
- "$default": {
18
- "$source": "projectName"
19
- },
20
- "x-dropdown": "projects",
21
- "x-priority": "important"
22
- },
23
- "name": {
24
- "type": "string",
25
- "description": "The name of the worker.",
26
- "$default": {
27
- "$source": "argv",
28
- "index": 0
29
- },
30
- "x-prompt": "What name would you like to use for the worker?",
31
- "x-priority": "important"
32
- },
33
- "snippet": {
34
- "type": "boolean",
35
- "default": true,
36
- "description": "Add a worker creation snippet in a sibling file of the same name."
37
- },
38
- "skipFormat": {
39
- "description": "Skip formatting files.",
40
- "type": "boolean",
41
- "default": false,
42
- "x-priority": "internal"
43
- }
44
- },
45
- "additionalProperties": false,
46
- "required": ["name", "project"],
47
- "examplesFile": "../../../docs/web-worker-examples.md"
45
+ "additionalProperties": false,
46
+ "required": ["name", "project"],
47
+ "examplesFile": "../../../docs/web-worker-examples.md"
48
48
  }
@@ -1,3 +1,3 @@
1
- export declare function loadVite(): Promise<typeof import('vite')>;
1
+ export declare function loadVite(): Promise<any>;
2
2
  export declare function findVitestBaseConfig(searchDirs: string[]): Promise<string | false>;
3
3
  //# sourceMappingURL=vitest.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"vitest.d.ts","sourceRoot":"","sources":["../../../../../../packages/angular/src/plugins/utils/vitest.ts"],"names":[],"mappings":"AAaA,wBAAgB,QAAQ,IAAI,OAAO,CAAC,cAAc,MAAM,CAAC,CAAC,CAEzD;AAED,wBAAsB,oBAAoB,CACxC,UAAU,EAAE,MAAM,EAAE,GACnB,OAAO,CAAC,MAAM,GAAG,KAAK,CAAC,CAiBzB"}
1
+ {"version":3,"file":"vitest.d.ts","sourceRoot":"","sources":["../../../../../../packages/angular/src/plugins/utils/vitest.ts"],"names":[],"mappings":"AAgBA,wBAAgB,QAAQ,IAAI,OAAO,CAAC,GAAG,CAAC,CAEvC;AAED,wBAAsB,oBAAoB,CACxC,UAAU,EAAE,MAAM,EAAE,GACnB,OAAO,CAAC,MAAM,GAAG,KAAK,CAAC,CAiBzB"}
@@ -13,6 +13,9 @@ const VITEST_CONFIG_FILES = [
13
13
  'vitest-base.config.mjs',
14
14
  'vitest-base.config.cjs',
15
15
  ];
16
+ // TODO(jack): Remove this cast when @nx/angular switches to moduleResolution:
17
+ // "nodenext". Vite 8 ships ESM-only type declarations (.d.mts) not resolvable
18
+ // under moduleResolution: "node".
16
19
  function loadVite() {
17
20
  return Function('return import("vite")')();
18
21
  }
@@ -1 +1 @@
1
- {"version":3,"file":"backward-compatible-versions.d.ts","sourceRoot":"","sources":["../../../../../packages/angular/src/utils/backward-compatible-versions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,cAAc,MAAM,YAAY,CAAC;AAE7C,eAAO,MAAM,iBAAiB,uBAAwB,CAAC;AACvD,MAAM,MAAM,gBAAgB,GAAG,CAAC,OAAO,iBAAiB,CAAC,CAAC,MAAM,CAAC,CAAC;AAElE,MAAM,MAAM,mBAAmB,GAAG,OAAO,CACvC,MAAM,OAAO,cAAc,EAC3B,WAAW,CACZ,CAAC;AACF,MAAM,MAAM,UAAU,GAAG;IACvB,EAAE,EAAE,MAAM,CAAC,mBAAmB,EAAE,MAAM,CAAC,CAAC;IACxC,EAAE,EAAE,MAAM,CAAC,mBAAmB,EAAE,MAAM,CAAC,CAAC;IACxC,EAAE,EAAE,MAAM,CAAC,mBAAmB,GAAG,sBAAsB,EAAE,MAAM,CAAC,CAAC;CAClE,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,gBAAgB,CAAC,CAAC;AAEjE,eAAO,MAAM,0BAA0B,EAAE,UAiExC,CAAC"}
1
+ {"version":3,"file":"backward-compatible-versions.d.ts","sourceRoot":"","sources":["../../../../../packages/angular/src/utils/backward-compatible-versions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,cAAc,MAAM,YAAY,CAAC;AAE7C,eAAO,MAAM,iBAAiB,uBAAwB,CAAC;AACvD,MAAM,MAAM,gBAAgB,GAAG,CAAC,OAAO,iBAAiB,CAAC,CAAC,MAAM,CAAC,CAAC;AAElE,MAAM,MAAM,mBAAmB,GAAG,OAAO,CACvC,MAAM,OAAO,cAAc,EAC3B,WAAW,CACZ,CAAC;AACF,MAAM,MAAM,UAAU,GAAG;IACvB,EAAE,EAAE,MAAM,CAAC,mBAAmB,EAAE,MAAM,CAAC,CAAC;IACxC,EAAE,EAAE,MAAM,CAAC,mBAAmB,EAAE,MAAM,CAAC,CAAC;IACxC,EAAE,EAAE,MAAM,CAAC,mBAAmB,GAAG,sBAAsB,EAAE,MAAM,CAAC,CAAC;CAClE,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,gBAAgB,CAAC,CAAC;AAEjE,eAAO,MAAM,0BAA0B,EAAE,UAmExC,CAAC"}
@@ -36,6 +36,7 @@ exports.backwardCompatibleVersions = {
36
36
  webpackMergeVersion: '^5.8.0',
37
37
  vitestVersion: '^3.1.1',
38
38
  jsdomVersion: '~22.1.0',
39
+ oxcProjectRuntimeVersion: '^0.115.0',
39
40
  },
40
41
  19: {
41
42
  angularVersion: '~19.2.0',
@@ -68,5 +69,6 @@ exports.backwardCompatibleVersions = {
68
69
  webpackMergeVersion: '^5.8.0',
69
70
  vitestVersion: '^3.1.1',
70
71
  jsdomVersion: '~22.1.0',
72
+ oxcProjectRuntimeVersion: '^0.115.0',
71
73
  },
72
74
  };
@@ -27,5 +27,6 @@ export declare const typesNodeVersion = "20.19.9";
27
27
  export declare const jasmineMarblesVersion = "^0.9.2";
28
28
  export declare const vitestVersion = "^4.0.8";
29
29
  export declare const jsdomVersion = "^27.1.0";
30
+ export declare const oxcProjectRuntimeVersion = "^0.115.0";
30
31
  export declare const jsoncEslintParserVersion = "^2.1.0";
31
32
  //# sourceMappingURL=versions.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"versions.d.ts","sourceRoot":"","sources":["../../../../../packages/angular/src/utils/versions.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,SAAS,KAAwC,CAAC;AAE/D,eAAO,MAAM,cAAc,YAAY,CAAC;AACxC,eAAO,MAAM,oBAAoB,YAAY,CAAC;AAC9C,eAAO,MAAM,gBAAgB,YAAY,CAAC;AAC1C,eAAO,MAAM,WAAW,YAAY,CAAC;AACrC,eAAO,MAAM,WAAW,WAAW,CAAC;AACpC,eAAO,MAAM,aAAa,YAAY,CAAC;AACvC,eAAO,MAAM,YAAY,WAAW,CAAC;AAErC,eAAO,MAAM,WAAW,WAAW,CAAC;AACpC,eAAO,MAAM,gBAAgB,WAAW,CAAC;AACzC,eAAO,MAAM,cAAc,YAAY,CAAC;AACxC,eAAO,MAAM,mBAAmB,aAAa,CAAC;AAC9C,eAAO,MAAM,kBAAkB,WAAW,CAAC;AAC3C,eAAO,MAAM,2BAA2B,YAAY,CAAC;AACrD,eAAO,MAAM,+BAA+B,WAAW,CAAC;AACxD,eAAO,MAAM,mBAAmB,WAAW,CAAC;AAE5C,eAAO,MAAM,oBAAoB,YAAY,CAAC;AAC9C,eAAO,MAAM,uBAAuB,YAAY,CAAC;AACjD,eAAO,MAAM,eAAe,WAAW,CAAC;AACxC,eAAO,MAAM,cAAc,WAAW,CAAC;AACvC,eAAO,MAAM,iBAAiB,YAAY,CAAC;AAC3C,eAAO,MAAM,mBAAmB,YAAY,CAAC;AAC7C,eAAO,MAAM,aAAa,WAAW,CAAC;AACtC,eAAO,MAAM,WAAW,WAAW,CAAC;AAEpC,eAAO,MAAM,wBAAwB,YAAY,CAAC;AAClD,eAAO,MAAM,gBAAgB,YAAY,CAAC;AAC1C,eAAO,MAAM,qBAAqB,WAAW,CAAC;AAE9C,eAAO,MAAM,aAAa,WAAW,CAAC;AACtC,eAAO,MAAM,YAAY,YAAY,CAAC;AAEtC,eAAO,MAAM,wBAAwB,WAAW,CAAC"}
1
+ {"version":3,"file":"versions.d.ts","sourceRoot":"","sources":["../../../../../packages/angular/src/utils/versions.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,SAAS,KAAwC,CAAC;AAE/D,eAAO,MAAM,cAAc,YAAY,CAAC;AACxC,eAAO,MAAM,oBAAoB,YAAY,CAAC;AAC9C,eAAO,MAAM,gBAAgB,YAAY,CAAC;AAC1C,eAAO,MAAM,WAAW,YAAY,CAAC;AACrC,eAAO,MAAM,WAAW,WAAW,CAAC;AACpC,eAAO,MAAM,aAAa,YAAY,CAAC;AACvC,eAAO,MAAM,YAAY,WAAW,CAAC;AAErC,eAAO,MAAM,WAAW,WAAW,CAAC;AACpC,eAAO,MAAM,gBAAgB,WAAW,CAAC;AACzC,eAAO,MAAM,cAAc,YAAY,CAAC;AACxC,eAAO,MAAM,mBAAmB,aAAa,CAAC;AAC9C,eAAO,MAAM,kBAAkB,WAAW,CAAC;AAC3C,eAAO,MAAM,2BAA2B,YAAY,CAAC;AACrD,eAAO,MAAM,+BAA+B,WAAW,CAAC;AACxD,eAAO,MAAM,mBAAmB,WAAW,CAAC;AAE5C,eAAO,MAAM,oBAAoB,YAAY,CAAC;AAC9C,eAAO,MAAM,uBAAuB,YAAY,CAAC;AACjD,eAAO,MAAM,eAAe,WAAW,CAAC;AACxC,eAAO,MAAM,cAAc,WAAW,CAAC;AACvC,eAAO,MAAM,iBAAiB,YAAY,CAAC;AAC3C,eAAO,MAAM,mBAAmB,YAAY,CAAC;AAC7C,eAAO,MAAM,aAAa,WAAW,CAAC;AACtC,eAAO,MAAM,WAAW,WAAW,CAAC;AAEpC,eAAO,MAAM,wBAAwB,YAAY,CAAC;AAClD,eAAO,MAAM,gBAAgB,YAAY,CAAC;AAC1C,eAAO,MAAM,qBAAqB,WAAW,CAAC;AAE9C,eAAO,MAAM,aAAa,WAAW,CAAC;AACtC,eAAO,MAAM,YAAY,YAAY,CAAC;AAGtC,eAAO,MAAM,wBAAwB,aAAa,CAAC;AAEnD,eAAO,MAAM,wBAAwB,WAAW,CAAC"}
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.jsoncEslintParserVersion = exports.jsdomVersion = exports.vitestVersion = exports.jasmineMarblesVersion = exports.typesNodeVersion = exports.jestPresetAngularVersion = exports.lessVersion = exports.tsNodeVersion = exports.autoprefixerVersion = exports.postcssUrlVersion = exports.postcssVersion = exports.tailwindVersion = exports.typescriptEslintVersion = exports.angularEslintVersion = exports.webpackMergeVersion = exports.moduleFederationEnhancedVersion = exports.moduleFederationNodeVersion = exports.browserSyncVersion = exports.typesExpressVersion = exports.expressVersion = exports.typesCorsVersion = exports.corsVersion = exports.tsLibVersion = exports.zoneJsVersion = exports.rxjsVersion = exports.ngrxVersion = exports.ngPackagrVersion = exports.angularDevkitVersion = exports.angularVersion = exports.nxVersion = void 0;
3
+ exports.jsoncEslintParserVersion = exports.oxcProjectRuntimeVersion = exports.jsdomVersion = exports.vitestVersion = exports.jasmineMarblesVersion = exports.typesNodeVersion = exports.jestPresetAngularVersion = exports.lessVersion = exports.tsNodeVersion = exports.autoprefixerVersion = exports.postcssUrlVersion = exports.postcssVersion = exports.tailwindVersion = exports.typescriptEslintVersion = exports.angularEslintVersion = exports.webpackMergeVersion = exports.moduleFederationEnhancedVersion = exports.moduleFederationNodeVersion = exports.browserSyncVersion = exports.typesExpressVersion = exports.expressVersion = exports.typesCorsVersion = exports.corsVersion = exports.tsLibVersion = exports.zoneJsVersion = exports.rxjsVersion = exports.ngrxVersion = exports.ngPackagrVersion = exports.angularDevkitVersion = exports.angularVersion = exports.nxVersion = void 0;
4
4
  exports.nxVersion = require('../../package.json').version;
5
5
  exports.angularVersion = '~21.2.0';
6
6
  exports.angularDevkitVersion = '~21.2.0';
@@ -30,4 +30,7 @@ exports.typesNodeVersion = '20.19.9';
30
30
  exports.jasmineMarblesVersion = '^0.9.2';
31
31
  exports.vitestVersion = '^4.0.8';
32
32
  exports.jsdomVersion = '^27.1.0';
33
+ // @angular/build uses rolldown which injects @oxc-project/runtime helpers
34
+ // at transform time but doesn't declare it as a dependency
35
+ exports.oxcProjectRuntimeVersion = '^0.115.0';
33
36
  exports.jsoncEslintParserVersion = '^2.1.0';