Skip to content

Commit

Permalink
fix(rspack): pin rspack to 1.0.5 (#424)
Browse files Browse the repository at this point in the history
* fix(rspack): pin rspack to 1.0.5

* chore(repo): update nx to 19.8.0
  • Loading branch information
Coly010 authored Sep 25, 2024
1 parent 2177dac commit 02f5009
Show file tree
Hide file tree
Showing 3 changed files with 2,178 additions and 597 deletions.
46 changes: 24 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,33 +20,35 @@
"react-dom": "18.3.1",
"react-is": "18.3.1",
"tslib": "^2.3.0",
"yargs-parser": "^21.1.1"
"yargs-parser": "^21.1.1",
"@storybook/addon-interactions": "^8.2.8",
"storybook": "^8.2.8"
},
"packageManager": "[email protected]",
"devDependencies": {
"@module-federation/enhanced": "~0.6.0",
"@module-federation/node": "~2.5.10",
"@nx/cypress": "19.5.7",
"@nx/detox": "19.5.7",
"@nx/devkit": "19.5.7",
"@nx/eslint": "19.5.7",
"@nx/eslint-plugin": "19.5.7",
"@nx/jest": "19.5.7",
"@nx/js": "19.5.7",
"@nx/node": "19.5.7",
"@nx/plugin": "19.5.7",
"@nx/react": "19.5.7",
"@nx/storybook": "19.5.7",
"@nx/vite": "19.5.7",
"@nx/workspace": "19.5.7",
"@module-federation/enhanced": "0.6.6",
"@module-federation/node": "2.5.9",
"@nx/cypress": "19.8.0",
"@nx/detox": "19.8.0",
"@nx/devkit": "19.8.0",
"@nx/eslint": "19.8.0",
"@nx/eslint-plugin": "19.8.0",
"@nx/jest": "19.8.0",
"@nx/js": "19.8.0",
"@nx/node": "19.8.0",
"@nx/plugin": "19.8.0",
"@nx/react": "19.8.0",
"@nx/storybook": "19.8.0",
"@nx/vite": "19.8.0",
"@nx/workspace": "19.8.0",
"@phenomnomnominal/tsquery": "^5.0.1",
"@rspack/core": "^1.0.2",
"@rspack/dev-server": "^1.0.2",
"@rspack/core": "1.0.5",
"@rspack/dev-server": "1.0.5",
"@rspack/plugin-minify": "^0.7.5",
"@rspack/plugin-react-refresh": "^1.0.0",
"@swc-node/register": "1.8.0",
"@types/fs-extra": "^11.0.1",
"@types/jest": "29.4.0",
"@types/jest": "29.5.13",
"@types/node": "18.16.9",
"@types/webpack-sources": "^3.2.1",
"@typescript-eslint/eslint-plugin": "7.18.0",
Expand All @@ -56,13 +58,13 @@
"eslint": "8.57.0",
"eslint-config-prettier": "9.0.0",
"fs-extra": "^11.1.0",
"jest": "29.4.3",
"jest-environment-jsdom": "29.4.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jsonc-eslint-parser": "^2.1.0",
"kill-port": "^2.0.1",
"license-webpack-plugin": "^4.0.2",
"metro-resolver": "0.71.0",
"nx": "19.5.7",
"nx": "19.8.0",
"prettier": "2.6.2",
"prettier-plugin-organize-imports": "^3.2.1",
"release-it": "15.2.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/rspack/src/utils/versions.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const rspackCoreVersion = '^1.0.2';
export const rspackDevServerVersion = '^1.0.2';
export const rspackCoreVersion = '1.0.5';
export const rspackDevServerVersion = '1.0.5';

export const rspackPluginMinifyVersion = '^0.7.5';
export const rspackPluginReactRefreshVersion = '^1.0.0';
Expand Down
Loading

0 comments on commit 02f5009

Please sign in to comment.