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