LiskArchive / lisk-ui

🖥️ Lisk user-interface submodule
https://lisk.io/
GNU General Public License v3.0
24 stars 35 forks source link

Use jit-grunt to slightly speed up grunt #81

Closed slaweet closed 7 years ago

slaweet commented 7 years ago

and make Gruntfile.js less cluttered with loading tasks.

Though the big slow thing in grunt is browserify. It takes 9 seconds on my machine (Older laptop, no SSD). I tried to use watchify to speed things up and it is really fast, almost immediate. There is even grunt-watchify task or a watch option in grunt-browserify that runs watchify. But the downside is that there have to be two watch scripts running and the setup is a bit cumbersome. I'll try to look more into it.