We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
@rspack/core: "0.7.4"
// a.js module.exports = "a" // index.js function f(__webpack_require__) { require('./a.js'); __webpack_require__ + 1 }
expect after npx rspack build:
npx rspack build
function f(__nested_webpack_require_11__) { __webpack_require__("./src/a.js"); __nested_webpack_require_11__ + 1 }
actually:
function f(__webpack_require__) { __webpack_require__("./src/a.js"); __webpack_require__ + 1 }
No response
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
System Info
@rspack/core: "0.7.4"
Details
expect after
npx rspack build
:actually:
Reproduce link
No response
Reproduce Steps
npx rspack build
The text was updated successfully, but these errors were encountered: