alferov / generator-angular-gulp-browserify

A Yeoman generator for creating modern web applications using Angular, gulp, SASS, and Browserify
MIT License
21 stars 7 forks source link

Babel deoptimized the styling the styling - template.js more then 100kb #4

Closed mnemanja closed 9 years ago

mnemanja commented 9 years ago

I've been searching on how to deal with this, but haven't managed to find a solution.

[BABEL] Note: The code generator has deoptimised the styling of "PATH/templates.js" as it exceeds the max of "100KB".

Currently I don't know what problem it produces (performance, or something else). It appears twice in the log when I run any of the tasks.

alferov commented 9 years ago

Hmm, try to change this line to: { 'name':babelify, 'options': { 'compact': 'true' }},

mnemanja commented 9 years ago

That works, great. Thanks! :)