@nx/node 17.2.0-beta.5 → 17.2.0-beta.8

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/node",
3
- "version": "17.2.0-beta.5",
3
+ "version": "17.2.0-beta.8",
4
4
  "private": false,
5
5
  "description": "The Node Plugin for Nx contains generators to manage Node applications within an Nx workspace.",
6
6
  "repository": {
@@ -31,11 +31,11 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "tslib": "^2.3.0",
34
- "@nx/devkit": "17.2.0-beta.5",
35
- "@nx/jest": "17.2.0-beta.5",
36
- "@nx/js": "17.2.0-beta.5",
37
- "@nx/eslint": "17.2.0-beta.5",
38
- "@nrwl/node": "17.2.0-beta.5"
34
+ "@nx/devkit": "17.2.0-beta.8",
35
+ "@nx/jest": "17.2.0-beta.8",
36
+ "@nx/js": "17.2.0-beta.8",
37
+ "@nx/eslint": "17.2.0-beta.8",
38
+ "@nrwl/node": "17.2.0-beta.8"
39
39
  },
40
40
  "publishConfig": {
41
41
  "access": "public"
@@ -7,7 +7,6 @@ const jest_1 = require("@nx/jest");
7
7
  const js_1 = require("@nx/js");
8
8
  const versions_1 = require("@nx/js/src/utils/versions");
9
9
  const eslint_1 = require("@nx/eslint");
10
- const lint_project_1 = require("@nx/eslint/src/generators/lint-project/lint-project");
11
10
  const path_1 = require("path");
12
11
  const versions_2 = require("../../utils/versions");
13
12
  const e2e_project_1 = require("../e2e-project/e2e-project");
@@ -169,9 +168,6 @@ async function addLintingToApplication(tree, options) {
169
168
  tsConfigPaths: [
170
169
  (0, devkit_1.joinPathFragments)(options.appProjectRoot, 'tsconfig.app.json'),
171
170
  ],
172
- eslintFilePatterns: [
173
- (0, lint_project_1.mapLintPattern)(options.appProjectRoot, options.js ? 'js' : 'ts', options.rootProject),
174
- ],
175
171
  unitTestRunner: options.unitTestRunner,
176
172
  skipFormat: true,
177
173
  setParserOptionsProject: options.setParserOptionsProject,
@@ -71,7 +71,6 @@ async function e2eProjectGeneratorInternal(host, _options) {
71
71
  tsConfigPaths: [
72
72
  (0, devkit_1.joinPathFragments)(options.e2eProjectRoot, 'tsconfig.json'),
73
73
  ],
74
- eslintFilePatterns: [`${options.e2eProjectRoot}/**/*.{js,ts}`],
75
74
  setParserOptionsProject: false,
76
75
  skipPackageJson: false,
77
76
  rootProject: options.rootProject,