Added some comments. I'm not entirely convinced we need grunt so far. npm can do most of this for us with it's scripts option e.g. npm start, and npm test. As for linting, I think it's an ok idea but I won't focus on it too much. We can add an npm script for that too if you like, e.g. npm run-script lint, or even make it a pretest script so it runs automatically before testing.
I may still be able to be convinced otherwise on this if you've got good reasons, but I'm not sure it's worth bringing on yet another development dependency when npm can do most of this already. Thanks!
Added some comments. I'm not entirely convinced we need grunt so far. npm can do most of this for us with it's scripts option e.g.
npm start
, andnpm test
. As for linting, I think it's an ok idea but I won't focus on it too much. We can add an npm script for that too if you like, e.g.npm run-script lint
, or even make it apretest
script so it runs automatically before testing.I may still be able to be convinced otherwise on this if you've got good reasons, but I'm not sure it's worth bringing on yet another development dependency when npm can do most of this already. Thanks!