@nx/next 21.0.0-beta.7 → 21.0.0-beta.9

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 CHANGED
@@ -1,31 +1,6 @@
1
1
  {
2
- "generators": {
3
- "update-17-2-7": {
4
- "cli": "nx",
5
- "version": "17.2.7",
6
- "description": "Remove patched eslint rule for @next/next/no-html-link-for-pages",
7
- "implementation": "./src/migrations/update-17-2-7/remove-eslint-rules-patch"
8
- }
9
- },
2
+ "generators": {},
10
3
  "packageJsonUpdates": {
11
- "17.3.1-beta.0": {
12
- "version": "17.3.1-beta.0",
13
- "packages": {
14
- "next": {
15
- "version": "14.0.4",
16
- "alwaysAddToPackageJson": false
17
- }
18
- }
19
- },
20
- "18.0.4": {
21
- "version": "18.0.4-beta.0",
22
- "packages": {
23
- "@swc-node/register": {
24
- "version": "~1.8.0",
25
- "alwaysAddToPackageJson": false
26
- }
27
- }
28
- },
29
4
  "19.0.3": {
30
5
  "version": "19.0.3-beta.0",
31
6
  "packages": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/next",
3
- "version": "21.0.0-beta.7",
3
+ "version": "21.0.0-beta.9",
4
4
  "private": false,
5
5
  "description": "The Next.js plugin for Nx contains executors and generators for managing Next.js applications and libraries within an Nx workspace. It provides:\n\n\n- Scaffolding for creating, building, serving, linting, and testing Next.js applications.\n\n- Integration with building, serving, and exporting a Next.js application.\n\n- Integration with React libraries within the workspace. \n\nWhen using Next.js in Nx, you get the out-of-the-box support for TypeScript, Playwright, Cypress, and Jest. No need to configure anything: watch mode, source maps, and typings just work.",
6
6
  "repository": {
@@ -35,7 +35,7 @@
35
35
  "next": ">=14.0.0"
36
36
  },
37
37
  "dependencies": {
38
- "@nx/devkit": "21.0.0-beta.7",
38
+ "@nx/devkit": "21.0.0-beta.9",
39
39
  "@babel/plugin-proposal-decorators": "^7.22.7",
40
40
  "@svgr/webpack": "^8.1.0",
41
41
  "copy-webpack-plugin": "^10.2.4",
@@ -44,11 +44,11 @@
44
44
  "semver": "^7.5.3",
45
45
  "tslib": "^2.3.0",
46
46
  "webpack-merge": "^5.8.0",
47
- "@nx/js": "21.0.0-beta.7",
48
- "@nx/eslint": "21.0.0-beta.7",
49
- "@nx/react": "21.0.0-beta.7",
50
- "@nx/web": "21.0.0-beta.7",
51
- "@nx/webpack": "21.0.0-beta.7",
47
+ "@nx/js": "21.0.0-beta.9",
48
+ "@nx/eslint": "21.0.0-beta.9",
49
+ "@nx/react": "21.0.0-beta.9",
50
+ "@nx/web": "21.0.0-beta.9",
51
+ "@nx/webpack": "21.0.0-beta.9",
52
52
  "@phenomnomnominal/tsquery": "~5.0.1"
53
53
  },
54
54
  "publishConfig": {
@@ -1,5 +1,6 @@
1
1
  {
2
2
  "version": 2,
3
+ "continuous": true,
3
4
  "outputCapture": "pipe",
4
5
  "cli": "nx",
5
6
  "title": "Next Serve",
@@ -1,2 +0,0 @@
1
- import { Tree } from '@nx/devkit';
2
- export default function update(tree: Tree): Promise<void>;
@@ -1,15 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.default = update;
4
- const devkit_1 = require("@nx/devkit");
5
- const eslint_file_1 = require("@nx/eslint/src/generators/utils/eslint-file");
6
- async function update(tree) {
7
- const projects = (0, devkit_1.getProjects)(tree);
8
- projects.forEach((project) => {
9
- if (!(0, eslint_file_1.isEslintConfigSupported)(tree, project.root))
10
- return;
11
- (0, eslint_file_1.updateOverrideInLintConfig)(tree, project.root, (o) => o.rules?.['@next/next/no-html-link-for-pages'] &&
12
- o.files?.includes('**/*.*'), (o) => undefined);
13
- });
14
- await (0, devkit_1.formatFiles)(tree);
15
- }