Skip to content

Commit

Permalink
chore: downgrade Rspack to stable version (#4690)
Browse files Browse the repository at this point in the history
  • Loading branch information
chenjiahan authored Sep 20, 2023
1 parent 6893765 commit 6d8cb68
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 51 deletions.
6 changes: 3 additions & 3 deletions packages/builder/builder-rspack-provider/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@
"@modern-js/types": "workspace:*",
"@modern-js/utils": "workspace:*",
"@babel/preset-typescript": "^7.22.15",
"@rspack/core": "0.3.4-canary-9d910ae-20230918010610",
"@rspack/dev-client": "0.3.4-canary-9d910ae-20230918010610",
"@rspack/plugin-html": "0.3.4-canary-9d910ae-20230918010610",
"@rspack/core": "0.3.4",
"@rspack/dev-client": "0.3.4",
"@rspack/plugin-html": "0.3.4",
"@swc/helpers": "0.5.1",
"rspack-manifest-plugin": "5.0.0-alpha0",
"caniuse-lite": "^1.0.30001520",
Expand Down
94 changes: 47 additions & 47 deletions pnpm-lock.yaml

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

9 changes: 8 additions & 1 deletion tests/utils/applyBaseConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,14 @@ export const applyBaseConfig = (
polyfill: 'off',
disableTsChecker: true,
},
plugins: [appTools({ bundler: 'experimental-rspack' })],
plugins: [
appTools({
bundler:
process.env.BUNDLER === 'webpack'
? 'webpack'
: 'experimental-rspack',
}),
],
},
config,
]);
Expand Down

0 comments on commit 6d8cb68

Please sign in to comment.