sintaxi / terraform

Asset pipeline for the Harp Web Server.
102 stars 101 forks source link

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

Open kennethormandy opened 8 years ago

kennethormandy commented 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.