Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update npm dev dependencies #9367

Merged
merged 2 commits into from
Feb 22, 2025
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
31 changes: 15 additions & 16 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,13 @@
lockFileMaintenance: {
enabled: true
},
ignorePaths: ["**/fixtures/**", "npm/**", "**/no-override-loaded/**"],
ignorePaths: [
"**/fixtures/**",
"npm/**",
"**/no-override-loaded/**",
"**/share-plugin-dual-mode/**",
"**/resolve-plugin-context/**"
],
assignees: ["@SoonIter"],
packageRules: [
// manually update peer dependencies
Expand All @@ -29,11 +35,6 @@
"actions/download-artifact"
]
},
{
groupName: "pnpm",
matchPackageNames: ["pnpm"],
matchUpdateTypes: ["minor"]
},
{
groupName: "ignored github-actions upload-download-actions",
matchManagers: ["github-actions"],
Expand Down Expand Up @@ -120,27 +121,19 @@
enabled: false
},
{
groupName: "npm dev dependencies",
groupName: "npm dependencies",
matchManagers: ["npm"],
matchDepTypes: ["devDependencies"],
matchDepTypes: ["dependencies", "devDependencies"],
excludePackagePrefixes: ["webpack"],
excludePackageNames: [
"typescript",
"pnpm",
"@playwright/test",
"@biomejs/biome",
"prettier"
],
// bump major and minor in a separate PR
matchUpdateTypes: ["patch"]
},
{
groupName: "npm dependencies",
matchManagers: ["npm"],
matchDepTypes: ["dependencies"],
// bump major and minor in a separate PR
matchUpdateTypes: ["patch"]
},
{
groupName: "webpack",
matchManagers: ["npm"],
Expand Down Expand Up @@ -176,6 +169,12 @@
matchFileNames: ["website/package.json"],
matchPackagePrefixes: ["@rspress/", "rspress-plugin-", "rsbuild-plugin"],
matchPackageNames: ["rspress"]
},
// Disable Node.js updates
{
groupName: "node",
matchPackageNames: ["node"],
enabled: false
}
]
}
2 changes: 1 addition & 1 deletion crates/node_binding/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"bugs": "https://github.com/web-infra-dev/rspack/issues",
"repository": "web-infra-dev/rspack",
"devDependencies": {
"@napi-rs/cli": "3.0.0-alpha.65",
"@napi-rs/cli": "3.0.0-alpha.71",
"typescript": "^5.7.3"
},
"napi": {
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,23 +63,23 @@
"@taplo/cli": "^0.7.0",
"@types/is-ci": "^3.0.4",
"@types/jest": "29.5.14",
"@types/node": "^20.17.10",
"@types/node": "^20.17.19",
"commander": "13.1.0",
"cross-env": "^7.0.3",
"husky": "^9.1.7",
"is-ci": "4.1.0",
"jest": "29.7.0",
"jest-cli": "29.7.0",
"jest-environment-node": "29.7.0",
"lint-staged": "^15.0.0",
"lint-staged": "^15.4.3",
"prettier": "3.5.1",
"prettier-2": "npm:[email protected]",
"rimraf": "^5.0.10",
"ts-jest": "29.2.5",
"typescript": "^5.7.3",
"webpack": "5.98.0",
"webpack-cli": "5.1.4",
"zx": "8.3.0"
"zx": "8.3.2"
},
"packageManager": "[email protected]",
"pnpm": {
Expand Down
4 changes: 2 additions & 2 deletions packages/create-rspack/template-react-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"@rspack/cli": "workspace:*",
"@rspack/core": "workspace:*",
"@rspack/plugin-react-refresh": "^1.0.1",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"cross-env": "^7.0.3",
"react-refresh": "^0.16.0"
}
Expand Down
4 changes: 2 additions & 2 deletions packages/create-rspack/template-react-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"@rspack/cli": "workspace:*",
"@rspack/core": "workspace:*",
"@rspack/plugin-react-refresh": "^1.0.1",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"cross-env": "^7.0.3",
"react-refresh": "^0.16.0",
"ts-node": "^10.9.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/create-rspack/template-vue-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
"@rspack/cli": "workspace:*",
"@rspack/core": "workspace:*",
"cross-env": "^7.0.3",
"vue-loader": "^17.3.1"
"vue-loader": "^17.4.2"
}
}
2 changes: 1 addition & 1 deletion packages/create-rspack/template-vue-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
"cross-env": "^7.0.3",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"vue-loader": "^17.3.1"
"vue-loader": "^17.4.2"
}
}
6 changes: 3 additions & 3 deletions packages/rspack-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@
"@rspack/core": "workspace:*",
"@rspack/tracing": "workspace:*",
"@types/interpret": "^1.1.3",
"@types/rechoir": "^0.6.1",
"@types/webpack-bundle-analyzer": "^4.6.0",
"@types/rechoir": "^0.6.4",
"@types/webpack-bundle-analyzer": "^4.7.0",
"@types/yargs": "17.0.33",
"concat-stream": "^2.0.0",
"cross-env": "^7.0.3",
"execa": "^5.0.0",
"execa": "^5.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
Expand Down
24 changes: 12 additions & 12 deletions packages/rspack-test-tools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"@monaco-editor/react": "^4.7.0",
"@rspack/cli": "workspace:*",
"@rspack/core": "workspace:*",
"@rspack/plugin-preact-refresh": "1.1.0",
"@rspack/plugin-preact-refresh": "1.1.2",
"@rspack/plugin-react-refresh": "^1.0.1",
"@rspack/test-tools": "workspace:*",
"@swc/helpers": "0.5.15",
Expand All @@ -85,36 +85,36 @@
"@types/babel__traverse": "7.20.6",
"@types/fs-extra": "11.0.4",
"@types/jsdom": "^21.1.7",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/webpack": "5.28.5",
"@types/webpack-sources": "3.2.3",
"@webdiscus/pug-loader": "^2.11.1",
"acorn": "^8.14.0",
"babel-loader": "^9.2.1",
"babel-plugin-import": "^1.13.5",
"chalk": "^4.1.0",
"babel-plugin-import": "^1.13.8",
"chalk": "^4.1.2",
"coffee-loader": "^5.0.0",
"coffeescript": "^2.5.1",
"coffeescript": "^2.7.0",
"core-js": "3.40.0",
"css-loader": "^7.1.2",
"file-loader": "^6.2.0",
"graceful-fs": "^4.2.11",
"html-loader": "^5.0.0",
"html-webpack-plugin": "^5.5.0",
"html-webpack-plugin": "^5.6.3",
"less-loader": "^12.2.0",
"lodash": "^4.17.21",
"monaco-editor": "0.52.0",
"monaco-editor": "0.52.2",
"monaco-editor-webpack-plugin": "7.1.0",
"normalize.css": "^8.0.0",
"postcss-loader": "^8.0.0",
"postcss-pxtorem": "^6.0.0",
"normalize.css": "^8.0.1",
"postcss-loader": "^8.1.1",
"postcss-pxtorem": "^6.1.0",
"raw-loader": "^4.0.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-refresh": "^0.16.0",
"sass-embedded": "^1.85.0",
"sass-loader": "^16.0.0",
"sass-loader": "^16.0.5",
"source-map": "^0.7.4",
"source-map-loader": "^5.0.0",
"style-loader": "^4.0.0",
Expand Down
18 changes: 9 additions & 9 deletions packages/rspack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,25 +50,25 @@
},
"devDependencies": {
"@rspack/tracing": "workspace:*",
"@swc/core": "1.10.1",
"@swc/core": "1.10.18",
"@swc/types": "0.1.17",
"@types/graceful-fs": "4.1.9",
"@types/watchpack": "^2.4.0",
"@types/watchpack": "^2.4.4",
"@types/webpack-sources": "3.2.3",
"browserslist": "^4.21.3",
"browserslist": "^4.24.4",
"cross-env": "^7.0.3",
"enhanced-resolve": "5.18.1",
"graceful-fs": "^4.2.11",
"json-parse-even-better-errors": "^3.0.0",
"json-parse-even-better-errors": "^3.0.2",
"prebundle": "^1.2.7",
"tsc-alias": "^1.8.8",
"tsup": "^8.3.0",
"tsx": "^4.19.2",
"tsc-alias": "^1.8.10",
"tsup": "^8.3.6",
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"watchpack": "^2.4.0",
"watchpack": "^2.4.2",
"webpack-dev-server": "5.0.4",
"webpack-sources": "3.2.3",
"zod": "^3.24.1",
"zod": "^3.24.2",
"zod-validation-error": "3.4.0"
},
"dependencies": {
Expand Down
Loading
Loading