@nx/angular 16.1.2 → 16.1.3
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/migrations.json +16 -0
- package/package.json +10 -10
- package/src/utils/versions.d.ts +1 -1
- package/src/utils/versions.js +1 -1
package/migrations.json
CHANGED
|
@@ -1110,6 +1110,22 @@
|
|
|
1110
1110
|
"alwaysAddToPackageJson": false
|
|
1111
1111
|
}
|
|
1112
1112
|
}
|
|
1113
|
+
},
|
|
1114
|
+
"16.1.3-jest": {
|
|
1115
|
+
"version": "16.1.3-beta.0",
|
|
1116
|
+
"requires": {
|
|
1117
|
+
"@angular-devkit/build-angular": ">=13.0.0 <17.0.0",
|
|
1118
|
+
"@angular/compiler-cli": ">=13.0.0 <17.0.0",
|
|
1119
|
+
"@angular/core": ">=13.0.0 <17.0.0",
|
|
1120
|
+
"@angular/platform-browser-dynamic": ">=13.0.0 <17.0.0",
|
|
1121
|
+
"jest": "^29.0.0"
|
|
1122
|
+
},
|
|
1123
|
+
"packages": {
|
|
1124
|
+
"jest-preset-angular": {
|
|
1125
|
+
"version": "~13.1.0",
|
|
1126
|
+
"alwaysAddToPackageJson": false
|
|
1127
|
+
}
|
|
1128
|
+
}
|
|
1113
1129
|
}
|
|
1114
1130
|
}
|
|
1115
1131
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/angular",
|
|
3
|
-
"version": "16.1.
|
|
3
|
+
"version": "16.1.3",
|
|
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, 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- Upgrading AngularJS applications \n\n- Single Component Application Modules (SCAMs) \n\n- NgRx helpers. \n\n- Utilities for automatic workspace refactoring.",
|
|
6
6
|
"repository": {
|
|
@@ -66,14 +66,14 @@
|
|
|
66
66
|
"migrations": "./migrations.json"
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
|
-
"@nrwl/angular": "16.1.
|
|
70
|
-
"@nx/cypress": "16.1.
|
|
71
|
-
"@nx/devkit": "16.1.
|
|
72
|
-
"@nx/jest": "16.1.
|
|
73
|
-
"@nx/js": "16.1.
|
|
74
|
-
"@nx/linter": "16.1.
|
|
75
|
-
"@nx/webpack": "16.1.
|
|
76
|
-
"@nx/workspace": "16.1.
|
|
69
|
+
"@nrwl/angular": "16.1.3",
|
|
70
|
+
"@nx/cypress": "16.1.3",
|
|
71
|
+
"@nx/devkit": "16.1.3",
|
|
72
|
+
"@nx/jest": "16.1.3",
|
|
73
|
+
"@nx/js": "16.1.3",
|
|
74
|
+
"@nx/linter": "16.1.3",
|
|
75
|
+
"@nx/webpack": "16.1.3",
|
|
76
|
+
"@nx/workspace": "16.1.3",
|
|
77
77
|
"@phenomnomnominal/tsquery": "~5.0.1",
|
|
78
78
|
"@typescript-eslint/type-utils": "^5.36.1",
|
|
79
79
|
"chalk": "^4.1.0",
|
|
@@ -110,5 +110,5 @@
|
|
|
110
110
|
"module": "fesm2022/nx-angular.mjs",
|
|
111
111
|
"typings": "index.d.ts",
|
|
112
112
|
"sideEffects": false,
|
|
113
|
-
"gitHead": "
|
|
113
|
+
"gitHead": "a6642bf2a87616e2791ade7dc9b570a3e4908974"
|
|
114
114
|
}
|
package/src/utils/versions.d.ts
CHANGED
|
@@ -21,6 +21,6 @@ export declare const postcssPresetEnvVersion = "~7.5.0";
|
|
|
21
21
|
export declare const postcssUrlVersion = "~10.1.3";
|
|
22
22
|
export declare const autoprefixerVersion = "^10.4.0";
|
|
23
23
|
export declare const tsNodeVersion = "10.9.1";
|
|
24
|
-
export declare const jestPresetAngularVersion = "~13.
|
|
24
|
+
export declare const jestPresetAngularVersion = "~13.1.0";
|
|
25
25
|
export declare const typesNodeVersion = "16.11.7";
|
|
26
26
|
export declare const jasmineMarblesVersion = "^0.9.2";
|
package/src/utils/versions.js
CHANGED
|
@@ -24,7 +24,7 @@ exports.postcssPresetEnvVersion = '~7.5.0';
|
|
|
24
24
|
exports.postcssUrlVersion = '~10.1.3';
|
|
25
25
|
exports.autoprefixerVersion = '^10.4.0';
|
|
26
26
|
exports.tsNodeVersion = '10.9.1';
|
|
27
|
-
exports.jestPresetAngularVersion = '~13.
|
|
27
|
+
exports.jestPresetAngularVersion = '~13.1.0';
|
|
28
28
|
exports.typesNodeVersion = '16.11.7';
|
|
29
29
|
exports.jasmineMarblesVersion = '^0.9.2';
|
|
30
30
|
//# sourceMappingURL=versions.js.map
|