terraform icon indicating copy to clipboard operation
terraform copied to clipboard

Duplicate minification of Browserified files, prevents JSX, other Browserify transforms

Open kennethormandy opened this issue 9 years ago • 0 comments

https://github.com/sintaxi/terraform/blob/master/lib/javascript/index.js#L58

Changing:

cb(null, minify.js(js, minifyOpts))

…to:

cb(null, js, minifyOpts)

…solves the problem in this case (although removes minification elsewhere. The Browserify stuff is still minified after the transforms and compile step. It should only happen once.

kennethormandy avatar Feb 02 '16 23:02 kennethormandy