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
$ 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:
beautify
if (opts.b) { if (!opts.output) opts.output = {} opts.output.beautify = opts.b }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The problem is this code:
... Should instead be setting
beautify
in opts.output:The text was updated successfully, but these errors were encountered: