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

Rollup 2.24 breaks UMD bundle #3723

Closed
HitkoDev opened this issue Aug 14, 2020 · 1 comment · Fixed by #3724
Closed

Rollup 2.24 breaks UMD bundle #3723

HitkoDev opened this issue Aug 14, 2020 · 1 comment · Fixed by #3724

Comments

@HitkoDev
Copy link

import {resolve} from 'dns'
import 'util'
import {writeFileSync} from 'fs'

resolve('name')
writeFileSync('foo', 'bar')

Expected Behavior

Wrapper function looks like

function (dns, util, fs) {
  // content
}

Actual Behavior

Wrapper function looks like

function (dns, , fs) {
  // content
}
@lukastaegert
Copy link
Member

Thanks for spotting, fix at #3724

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants