So I have 5 grunt-contrib-watch
tasks:
- sass to compile sass files
- testConcat to concat tests
- implementationConcat to concat implementation files for testing
- templates to precompile handlebars templates
- karma to kick off karma test runs
I know grunt watch
would watch all of them, but i really need to split them into two groups -- the first four are for when my designer is running a static server and doing sass work, and the last two are for when I am doing js work.
I am using grunt-concurrent
to split them apart and run them concurrently, but while that works, it seems like a bit of a hack. Am I missing something?