-
Notifications
You must be signed in to change notification settings - Fork 47
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
feat: support rspack native plugin #710
base: main
Are you sure you want to change the base?
Conversation
✅ Deploy Preview for rsdoctor ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
f57bdb3
to
a556f69
Compare
a556f69
to
0acd4bc
Compare
@@ -50,7 +50,8 @@ | |||
}, | |||
"pnpm": { | |||
"overrides": { | |||
"react-dom": "18.3.1" | |||
"react-dom": "18.3.1", | |||
"@rspack/core": "npm:@rspack-canary/[email protected]" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be removed after publishing @rspack/[email protected]
@@ -21,7 +21,7 @@ | |||
"test": "cross-env NODE_OPTIONS=--max-old-space-size=8192 pnpm run ut", | |||
"test:all": "pnpm run test && pnpm run e2e", | |||
"sort-package-json": "npx sort-package-json \"packages/*/package.json\"", | |||
"ut": "vitest run", | |||
"ut": "vitest run --poolOptions.threads.singleThread", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the latest canary version of rspack may lead to Segmentation fault (core dumped)
, use single thread before this is fixed
Summary
Relate to web-infra-dev/rspack#8930
With native rspack plugin
Without native rspack plugin
Related Links