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
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
# When Node 18 is removed, remove the special cases in
# - build-tests-samples/heft-storybook-v9-react-tutorial/build.js
# - build-tests-samples/heft-storybook-v9-react-tutorial-app/build.js
# - The "globalOverrides" entry for "@vscode/vsce>cheerio" in common/config/rush/pnpm-config.json
- NodeVersion: 18.20.x
NodeVersionDisplayName: 18
OS: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion apps/rush-mcp-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"@rushstack/rush-sdk": "workspace:*",
"@rushstack/ts-command-line": "workspace:*",
"@modelcontextprotocol/sdk": "~1.10.2",
"zod": "~3.24.3"
"zod": "~3.25.76"
},
"devDependencies": {
"@rushstack/heft": "workspace:*",
Expand Down
70 changes: 42 additions & 28 deletions common/autoinstallers/rush-prettier/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"comment": "",
"type": "none",
"packageName": "@rushstack/mcp-server"
}
],
"packageName": "@rushstack/mcp-server",
"email": "[email protected]"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@rushstack/module-minifier",
"comment": "",
"type": "none"
}
],
"packageName": "@rushstack/module-minifier"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@rushstack/webpack5-localization-plugin",
"comment": "",
"type": "none"
}
],
"packageName": "@rushstack/webpack5-localization-plugin"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@rushstack/webpack5-module-minifier-plugin",
"comment": "",
"type": "none"
}
],
"packageName": "@rushstack/webpack5-module-minifier-plugin"
}
30 changes: 21 additions & 9 deletions common/config/rush/pnpm-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -206,16 +206,15 @@
// has been closed and a new version of `npm-check` is published.
"package-json": "^7",

// Remove these when decoupled dependencies are bumped
"@rushstack/[email protected]>@typescript-eslint/eslint-plugin": "~8.46.0",
"@rushstack/[email protected]>@typescript-eslint/utils": "~8.46.0",
"@rushstack/[email protected]>@typescript-eslint/parser": "~8.46.0",
"@rushstack/[email protected]>@typescript-eslint/typescript-estree": "~8.46.0",
"@rushstack/[email protected]>@typescript-eslint/utils": "~8.46.0",
"@rushstack/[email protected]>eslint": "~9.37.0",

// Force @types/estree to 1.0.8 for webpack 5.103.0 compatibility
"@types/estree": "1.0.8"
"@types/estree": "1.0.8",

// The React 17 types depend on a specific version of the scheduler types
"@types/[email protected]>@types/scheduler": "0.16.8",

// Newer versions of `cheerio` have a dependency on `undici`, which does not support Node 18.
// Remove when we drop support for Node 18
"@vscode/vsce>cheerio": "1.0.0-rc.12"
},

/**
Expand Down Expand Up @@ -279,6 +278,12 @@
}
},

"@emotion/utils": {
"dependencies": {
"@emotion/sheet": "^0.9.4"
}
},

"@jest/reporters": {
"dependencies": {
"@types/istanbul-lib-coverage": "2.0.4"
Expand Down Expand Up @@ -390,6 +395,13 @@
}
},

"sass-embedded": {
"dependencies": {
// The types reference this package, which is a devDependency
"source-map-js": "^1.0.2"
}
},

"scss-parser": {
"dependencies": {
"lodash": "~4.17.15"
Expand Down
Loading