@nx/angular 17.2.6 → 17.2.7
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/angular",
|
|
3
|
-
"version": "17.2.
|
|
3
|
+
"version": "17.2.7",
|
|
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": {
|
|
@@ -78,15 +78,15 @@
|
|
|
78
78
|
"tslib": "^2.3.0",
|
|
79
79
|
"webpack": "^5.80.0",
|
|
80
80
|
"webpack-merge": "^5.8.0",
|
|
81
|
-
"@nx/devkit": "17.2.
|
|
82
|
-
"@nx/cypress": "17.2.
|
|
83
|
-
"@nx/jest": "17.2.
|
|
84
|
-
"@nx/js": "17.2.
|
|
85
|
-
"@nx/eslint": "17.2.
|
|
86
|
-
"@nx/webpack": "17.2.
|
|
87
|
-
"@nx/web": "17.2.
|
|
88
|
-
"@nx/workspace": "17.2.
|
|
89
|
-
"@nrwl/angular": "17.2.
|
|
81
|
+
"@nx/devkit": "17.2.7",
|
|
82
|
+
"@nx/cypress": "17.2.7",
|
|
83
|
+
"@nx/jest": "17.2.7",
|
|
84
|
+
"@nx/js": "17.2.7",
|
|
85
|
+
"@nx/eslint": "17.2.7",
|
|
86
|
+
"@nx/webpack": "17.2.7",
|
|
87
|
+
"@nx/web": "17.2.7",
|
|
88
|
+
"@nx/workspace": "17.2.7",
|
|
89
|
+
"@nrwl/angular": "17.2.7"
|
|
90
90
|
},
|
|
91
91
|
"peerDependencies": {
|
|
92
92
|
"@angular-devkit/build-angular": ">= 15.0.0 < 18.0.0",
|
|
@@ -6,6 +6,7 @@ const eslint_1 = require("@nx/eslint");
|
|
|
6
6
|
const add_angular_eslint_dependencies_1 = require("./lib/add-angular-eslint-dependencies");
|
|
7
7
|
const eslint_file_1 = require("@nx/eslint/src/generators/utils/eslint-file");
|
|
8
8
|
const string_utils_1 = require("@nx/devkit/src/utils/string-utils");
|
|
9
|
+
const global_eslint_config_1 = require("@nx/eslint/src/generators/init/global-eslint-config");
|
|
9
10
|
async function addLintingGenerator(tree, options) {
|
|
10
11
|
const tasks = [];
|
|
11
12
|
const rootProject = options.projectRoot === '.' || options.projectRoot === '';
|
|
@@ -28,6 +29,7 @@ async function addLintingGenerator(tree, options) {
|
|
|
28
29
|
.read((0, devkit_1.joinPathFragments)(options.projectRoot, eslintFile), 'utf8')
|
|
29
30
|
.includes(`${options.projectRoot}/tsconfig.*?.json`);
|
|
30
31
|
(0, eslint_file_1.replaceOverridesInLintConfig)(tree, options.projectRoot, [
|
|
32
|
+
...(rootProject ? [global_eslint_config_1.typeScriptOverride, global_eslint_config_1.javaScriptOverride] : []),
|
|
31
33
|
{
|
|
32
34
|
files: ['*.ts'],
|
|
33
35
|
...(hasParserOptions
|