@nx/angular 22.7.0-pr.33655.9c47453 → 22.7.0-pr.33655.d8f5d50
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/assets.json +23 -0
- package/migrations.json +1 -1
- package/package.json +9 -9
- package/project.json +5 -50
- package/src/generators/utils/add-vitest.d.ts.map +1 -1
- package/src/generators/utils/add-vitest.js +6 -0
- package/src/generators/utils/dependencies.d.ts.map +1 -1
- package/src/generators/utils/dependencies.js +0 -1
- package/src/plugins/utils/vitest.d.ts +1 -1
- package/src/plugins/utils/vitest.d.ts.map +1 -1
- package/src/plugins/utils/vitest.js +3 -0
- package/src/utils/backward-compatible-versions.d.ts.map +1 -1
- package/src/utils/backward-compatible-versions.js +2 -0
- package/src/utils/versions.d.ts +1 -0
- package/src/utils/versions.d.ts.map +1 -1
- package/src/utils/versions.js +4 -1
package/assets.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"outDir": "dist/packages/angular",
|
|
3
|
+
"assets": [
|
|
4
|
+
{
|
|
5
|
+
"glob": "**/files/**"
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
"glob": "**/files/**/.gitkeep"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"glob": "**/*.json",
|
|
12
|
+
"ignore": ["tsconfig*.json", "project.json", ".eslintrc.json"]
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"glob": "**/*.js",
|
|
16
|
+
"ignore": ["**/jest.config.js"]
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"glob": "**/*.d.ts"
|
|
20
|
+
},
|
|
21
|
+
"LICENSE"
|
|
22
|
+
]
|
|
23
|
+
}
|
package/migrations.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/angular",
|
|
3
|
-
"version": "22.7.0-pr.33655.
|
|
3
|
+
"version": "22.7.0-pr.33655.d8f5d50",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The Nx Plugin for Angular contains executors, generators, and utilities for managing Angular applications and libraries within an Nx workspace. It provides: \n\n- Integration with libraries such as Storybook, Jest, ESLint, Tailwind CSS, Playwright and Cypress. \n\n- Generators to help scaffold code quickly (like: Micro Frontends, Libraries, both internal to your codebase and publishable to npm) \n\n- Single Component Application Modules (SCAMs) \n\n- NgRx helpers. \n\n- Utilities for automatic workspace refactoring.",
|
|
6
6
|
"repository": {
|
|
@@ -62,14 +62,14 @@
|
|
|
62
62
|
"migrations": "./migrations.json"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
|
-
"@nx/devkit": "22.7.0-pr.33655.
|
|
66
|
-
"@nx/eslint": "22.7.0-pr.33655.
|
|
67
|
-
"@nx/js": "22.7.0-pr.33655.
|
|
68
|
-
"@nx/module-federation": "22.7.0-pr.33655.
|
|
69
|
-
"@nx/rspack": "22.7.0-pr.33655.
|
|
70
|
-
"@nx/web": "22.7.0-pr.33655.
|
|
71
|
-
"@nx/webpack": "22.7.0-pr.33655.
|
|
72
|
-
"@nx/workspace": "22.7.0-pr.33655.
|
|
65
|
+
"@nx/devkit": "22.7.0-pr.33655.d8f5d50",
|
|
66
|
+
"@nx/eslint": "22.7.0-pr.33655.d8f5d50",
|
|
67
|
+
"@nx/js": "22.7.0-pr.33655.d8f5d50",
|
|
68
|
+
"@nx/module-federation": "22.7.0-pr.33655.d8f5d50",
|
|
69
|
+
"@nx/rspack": "22.7.0-pr.33655.d8f5d50",
|
|
70
|
+
"@nx/web": "22.7.0-pr.33655.d8f5d50",
|
|
71
|
+
"@nx/webpack": "22.7.0-pr.33655.d8f5d50",
|
|
72
|
+
"@nx/workspace": "22.7.0-pr.33655.d8f5d50",
|
|
73
73
|
"@phenomnomnominal/tsquery": "~6.1.4",
|
|
74
74
|
"@typescript-eslint/type-utils": "^8.0.0",
|
|
75
75
|
"enquirer": "~2.3.6",
|
package/project.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"projectType": "library",
|
|
6
6
|
"targets": {
|
|
7
7
|
"build-ng": {
|
|
8
|
-
"dependsOn": ["build-base", "typecheck", "
|
|
8
|
+
"dependsOn": ["build-base", "typecheck", "copy-assets"],
|
|
9
9
|
"executor": "@nx/angular:package",
|
|
10
10
|
"options": {
|
|
11
11
|
"project": "packages/angular/ng-package.json",
|
|
@@ -13,62 +13,17 @@
|
|
|
13
13
|
},
|
|
14
14
|
"outputs": ["{workspaceRoot}/dist/packages/angular"]
|
|
15
15
|
},
|
|
16
|
-
"legacy-post-build": {
|
|
17
|
-
"executor": "@nx/workspace-plugin:legacy-post-build",
|
|
18
|
-
"options": {
|
|
19
|
-
"tsConfig": "./tsconfig.lib.json",
|
|
20
|
-
"addPackageJsonFields": false,
|
|
21
|
-
"assets": [
|
|
22
|
-
{
|
|
23
|
-
"input": "packages/angular",
|
|
24
|
-
"glob": "**/files/**",
|
|
25
|
-
"output": "/"
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"input": "packages/angular",
|
|
29
|
-
"glob": "**/creator-files/**",
|
|
30
|
-
"output": "/"
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"input": "packages/angular",
|
|
34
|
-
"glob": "**/files/**/.gitkeep",
|
|
35
|
-
"output": "/"
|
|
36
|
-
},
|
|
37
|
-
{
|
|
38
|
-
"input": "packages/angular",
|
|
39
|
-
"glob": "**/*.json",
|
|
40
|
-
"ignore": ["**/tsconfig*.json", "project.json", ".eslintrc.json"],
|
|
41
|
-
"output": "/"
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
"input": "packages/angular",
|
|
45
|
-
"glob": "**/*.js",
|
|
46
|
-
"ignore": ["**/jest.config.js"],
|
|
47
|
-
"output": "/"
|
|
48
|
-
},
|
|
49
|
-
{
|
|
50
|
-
"input": "packages/angular",
|
|
51
|
-
"glob": "**/*.d.ts",
|
|
52
|
-
"output": "/"
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
"input": "",
|
|
56
|
-
"glob": "LICENSE",
|
|
57
|
-
"output": "/"
|
|
58
|
-
}
|
|
59
|
-
]
|
|
60
|
-
}
|
|
61
|
-
},
|
|
62
16
|
"build": {
|
|
63
17
|
"dependsOn": [
|
|
64
18
|
"^build",
|
|
65
19
|
"build-ng",
|
|
66
|
-
"legacy-post-build",
|
|
67
20
|
"typecheck",
|
|
68
|
-
"build-base"
|
|
21
|
+
"build-base",
|
|
22
|
+
"copy-assets"
|
|
69
23
|
],
|
|
70
24
|
"outputs": ["{workspaceRoot}/dist/packages/angular/README.md"],
|
|
71
|
-
"command": "node ./scripts/copy-readme.js angular"
|
|
25
|
+
"command": "node ./scripts/copy-readme.js angular",
|
|
26
|
+
"inputs": ["copyReadme"]
|
|
72
27
|
}
|
|
73
28
|
},
|
|
74
29
|
"implicitDependencies": ["vite"]
|
|
@@ -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,
|
|
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 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dependencies.d.ts","sourceRoot":"","sources":["../../../../../../packages/angular/src/generators/utils/dependencies.ts"],"names":[],"mappings":"AAAA,OAAO,EAAgC,IAAI,EAAE,MAAM,YAAY,CAAC;AAGhE,wBAAgB,wCAAwC,CAAC,IAAI,EAAE,IAAI,GAAG,IAAI,
|
|
1
|
+
{"version":3,"file":"dependencies.d.ts","sourceRoot":"","sources":["../../../../../../packages/angular/src/generators/utils/dependencies.ts"],"names":[],"mappings":"AAAA,OAAO,EAAgC,IAAI,EAAE,MAAM,YAAY,CAAC;AAGhE,wBAAgB,wCAAwC,CAAC,IAAI,EAAE,IAAI,GAAG,IAAI,CAUzE"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vitest.d.ts","sourceRoot":"","sources":["../../../../../../packages/angular/src/plugins/utils/vitest.ts"],"names":[],"mappings":"
|
|
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,
|
|
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
|
};
|
package/src/utils/versions.d.ts
CHANGED
|
@@ -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;
|
|
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"}
|
package/src/utils/versions.js
CHANGED
|
@@ -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';
|