Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/intellij/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ val nxlsRoot = "${rootDir}/dist/apps/nxls"
layout.buildDirectory = file("${rootDir}/dist/apps/intellij")

plugins {
id("dev.nx.gradle.project-graph") version ("0.1.20")
id("dev.nx.gradle.project-graph") version ("0.1.21")
id("java")
id("org.jetbrains.changelog") version "2.4.0"
id("org.jetbrains.intellij.platform") version "2.11.0"
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ group = "dev.nx.console"
layout.buildDirectory = File("dist")

plugins {
id("dev.nx.gradle.project-graph") version "0.1.20"
id("dev.nx.gradle.project-graph") version "0.1.21"
id("com.ncorti.ktfmt.gradle") version "0.24.0"

id("org.jetbrains.kotlin.jvm") version "2.2.0"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import type { ProjectGraph, Target } from 'nx/src/devkit-exports';
import { join } from 'path';
import {
importWorkspaceDependency,
workspaceDependencyPath,
Expand All @@ -14,10 +13,9 @@ export async function parseTargetString(
if (!devkitPath) {
throw 'local @nx/devkit dependency not found';
}
const importPath = join(devkitPath, 'src/executors/parse-target-string');
const { parseTargetString } =
await importWorkspaceDependency<
typeof import('@nx/devkit/src/executors/parse-target-string')
>(importPath);
Pick<typeof import('@nx/devkit'), 'parseTargetString'>
>(devkitPath);
return parseTargetString(targetString, projectGraph);
}
3 changes: 2 additions & 1 deletion nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -249,5 +249,6 @@
}
}
}
}
},
"analytics": true
}
36 changes: 18 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,24 +57,24 @@
"@modelcontextprotocol/inspector": "0.16.8",
"@monodon/typescript-nx-imports-plugin": "0.3.0",
"@nx/conformance": "21.0.0-beta.0",
"@nx/cypress": "23.0.0-beta.4",
"@nx/devkit": "23.0.0-beta.4",
"@nx/cypress": "23.0.0-beta.11",
"@nx/devkit": "23.0.0-beta.11",
"@nx/enterprise-cloud": "21.0.0-beta.0",
"@nx/esbuild": "23.0.0-beta.4",
"@nx/eslint": "23.0.0-beta.4",
"@nx/eslint-plugin": "23.0.0-beta.4",
"@nx/gradle": "23.0.0-beta.4",
"@nx/jest": "23.0.0-beta.4",
"@nx/js": "23.0.0-beta.4",
"@nx/node": "23.0.0-beta.4",
"@nx/esbuild": "23.0.0-beta.11",
"@nx/eslint": "23.0.0-beta.11",
"@nx/eslint-plugin": "23.0.0-beta.11",
"@nx/gradle": "23.0.0-beta.11",
"@nx/jest": "23.0.0-beta.11",
"@nx/js": "23.0.0-beta.11",
"@nx/node": "23.0.0-beta.11",
"@nx/owners": "21.0.0-beta.0",
"@nx/powerpack-license": "21.0.0-beta.0",
"@nx/storybook": "23.0.0-beta.4",
"@nx/vite": "23.0.0-beta.4",
"@nx/vitest": "23.0.0-beta.4",
"@nx/web": "23.0.0-beta.4",
"@nx/webpack": "23.0.0-beta.4",
"@nx/workspace": "23.0.0-beta.4",
"@nx/storybook": "23.0.0-beta.11",
"@nx/vite": "23.0.0-beta.11",
"@nx/vitest": "23.0.0-beta.11",
"@nx/web": "23.0.0-beta.11",
"@nx/webpack": "23.0.0-beta.11",
"@nx/workspace": "23.0.0-beta.11",
"@playwright/test": "1.52.0",
"@storybook/addon-docs": "9.0.18",
"@storybook/web-components-vite": "10.1.9",
Expand Down Expand Up @@ -112,14 +112,14 @@
"gradle-semantic-release-plugin": "1.10.1",
"html-webpack-plugin": "5.6.3",
"husky": "9.1.7",
"jest": "30.0.5",
"jest": "30.3.0",
"jest-environment-jsdom": "30.0.5",
"jest-environment-node": "29.7.0",
Comment on lines +115 to 117
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Version mismatch between Jest and its environment packages. jest is updated to 30.3.0 while jest-environment-node remains at 29.7.0 (major version behind). This will likely cause compatibility issues since Jest 30.x expects environment packages to be on version 30.x.

"jest": "30.3.0",
"jest-environment-jsdom": "30.3.0",
"jest-environment-node": "30.3.0",

Both jest-environment-jsdom should also be updated from 30.0.5 to 30.3.0 to match the Jest core version, and jest-environment-node needs to be updated from 29.7.0 to 30.3.0.

Suggested change
"jest": "30.3.0",
"jest-environment-jsdom": "30.0.5",
"jest-environment-node": "29.7.0",
"jest": "30.3.0",
"jest-environment-jsdom": "30.3.0",
"jest-environment-node": "30.3.0",

Spotted by Graphite

Fix in Graphite


Is this helpful? React 👍 or 👎 to let us know.

"jest-util": "30.0.5",
"jsonc-eslint-parser": "2.4.0",
"memfs": "3.5.3",
"mocha": "10.8.2",
"nx": "23.0.0-beta.4",
"nx": "23.0.0-beta.11",
"ovsx": "0.10.2",
"playwright": "1.52.0",
"prettier": "3.5.3",
Expand All @@ -134,7 +134,7 @@
"typescript": "5.9.2",
"universal-analytics": "0.5.3",
"uuid": "8.3.2",
"vite": "7.1.11",
"vite": "8.0.9",
"vscode-jsonrpc": "8.2.1",
"webpack": "5.101.3",
"zone.js": "0.14.3"
Expand Down
Loading
Loading