Open kennethormandy opened 8 years ago
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.
https://github.com/sintaxi/terraform/blob/master/lib/javascript/index.js#L58
Changing:
…to:
…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.