@nx/react 20.5.0-canary.20250213-b8ee838 → 20.5.0-canary.20250214-ef08108

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/react",
3
- "version": "20.5.0-canary.20250213-b8ee838",
3
+ "version": "20.5.0-canary.20250214-ef08108",
4
4
  "private": false,
5
5
  "description": "The React plugin for Nx contains executors and generators for managing React applications and libraries within an Nx workspace. It provides:\n\n\n- Integration with libraries such as Jest, Vitest, Playwright, Cypress, and Storybook.\n\n- Generators for applications, libraries, components, hooks, and more.\n\n- Library build support for publishing packages to npm or other registries.\n\n- Utilities for automatic workspace refactoring.",
6
6
  "repository": {
@@ -38,11 +38,11 @@
38
38
  "minimatch": "9.0.3",
39
39
  "picocolors": "^1.1.0",
40
40
  "tslib": "^2.3.0",
41
- "@nx/devkit": "20.5.0-canary.20250213-b8ee838",
42
- "@nx/js": "20.5.0-canary.20250213-b8ee838",
43
- "@nx/eslint": "20.5.0-canary.20250213-b8ee838",
44
- "@nx/web": "20.5.0-canary.20250213-b8ee838",
45
- "@nx/module-federation": "20.5.0-canary.20250213-b8ee838",
41
+ "@nx/devkit": "20.5.0-canary.20250214-ef08108",
42
+ "@nx/js": "20.5.0-canary.20250214-ef08108",
43
+ "@nx/eslint": "20.5.0-canary.20250214-ef08108",
44
+ "@nx/web": "20.5.0-canary.20250214-ef08108",
45
+ "@nx/module-federation": "20.5.0-canary.20250214-ef08108",
46
46
  "express": "^4.21.2",
47
47
  "http-proxy-middleware": "^3.0.3",
48
48
  "semver": "^7.6.3"
@@ -89,6 +89,8 @@ async function applicationGeneratorInternal(tree, schema) {
89
89
  });
90
90
  tasks.push(twTask);
91
91
  }
92
+ const lintTask = await (0, add_linting_1.addLinting)(tree, options);
93
+ tasks.push(lintTask);
92
94
  if (options.bundler === 'vite') {
93
95
  await (0, add_vite_1.setupViteConfiguration)(tree, options, tasks);
94
96
  }
@@ -102,8 +104,6 @@ async function applicationGeneratorInternal(tree, schema) {
102
104
  options.inSourceTests) {
103
105
  tree.delete((0, devkit_1.joinPathFragments)(options.appProjectRoot, `src/app/${options.fileName}.spec.tsx`));
104
106
  }
105
- const lintTask = await (0, add_linting_1.addLinting)(tree, options);
106
- tasks.push(lintTask);
107
107
  const e2eTask = await (0, add_e2e_1.addE2e)(tree, options);
108
108
  tasks.push(e2eTask);
109
109
  if (options.unitTestRunner === 'jest') {