actum / gulp-dev-stack

Actum dev stack based on gulp
MIT License
11 stars 7 forks source link

Faster gulp start/build #48

Closed janpanschab closed 8 years ago

janpanschab commented 8 years ago

As @kettanaito propose, we can significantly speed up gulp start/build. The main problem is babel transpilation. If we will support node >= 5, we have to rewrite only import/export to require/module.exports and destruction syntax. If we will support node >= 6, destruction is also supported. For me it’s good trade-off.

/cc @kettanaito @vbulant

janpanschab commented 8 years ago

I’ve just push branch gulpfile-without-babel. Difference in empty project is:

gulpfile.babel.js gulpfile.js
gulp build 7s 4s
vbulant commented 8 years ago

+1