I am using a modified version of the grunt file that comes with the angularjs generator of the Yeoman.io database, and the grunt-bower-install command is convenient for keeping my base index.html file up to date with the Bower dependencies.
However, when I do bower install (package) --save and then grunt bower-install, my updates are index.html, but my karma.conf.js is not updated, that is, I need to manually add a new file to the list of files to download when karma starts the test suite (otherwise the injector does not try to inject a nonexistent package).
Is there any easy way to add this to my workflow? This is not the end of the world, but it is one of those easily forgotten things.
source
share