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

beautify does not work; should be an output option #92

Open
josephg opened this issue Nov 13, 2018 · 0 comments
Open

beautify does not work; should be an output option #92

josephg opened this issue Nov 13, 2018 · 0 comments

Comments

@josephg
Copy link

josephg commented Nov 13, 2018

$ npx browserify -t [ uglifyify -b ] a.js 
DefaultsError: `beautify` is not a supported option while parsing file: a.js

The problem is this code:

  if (opts.b) {
    opts.beautify = opts.b
    delete opts.b
  }

... Should instead be setting beautify in opts.output:

  if (opts.b) {
    if (!opts.output) opts.output = {}
    opts.output.beautify = opts.b
  }
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