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

"return require" with bundle and minify generates "returnrequire" #134

Closed
rsms opened this issue May 22, 2020 · 0 comments
Closed

"return require" with bundle and minify generates "returnrequire" #134

rsms opened this issue May 22, 2020 · 0 comments

Comments

@rsms
Copy link

rsms commented May 22, 2020

Repro: esbuild --minify --bundle --platform=node main.js

main.js:

export function foo() {
  return require("fs")
}

Actual output

// ...
function c(){returnrequire("fs")}
// ...

Expected output:

// ...
function c(){return require("fs")}
// ...

Workaround:

export function foo() {
  const fs = require("fs")
  return fs
}
@evanw evanw closed this as completed in 89d41d8 May 22, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant