I have an angular project created with the angular generator https://github.com/yeoman/generator-angular
Bower is set up to minify my vendor dependencies, and I'm having trouble with highcharts.js. I want to tell it to use highstock.js, which is included as part of the highcharts bower package and stored in bower_components/highcharts/highstock.js
Here is what the build section for vendor.js looks like:
<!-- build:js(.) scripts/vendor.js -->
<!-- bower:js -->
<script src="bower_components/highcharts/highcharts.js"></script>
<script src="bower_components/highcharts/highcharts-more.js"></script>
<script src="bower_components/highcharts/modules/exporting.js"></script>
<!-- endbower -->
<!-- endbuild -->
If I remove the highcharts.js line from the bower build, grunt will put it back. If I rename it, grunt changes it back. I can't install a package called highstock because I don't think that exists. If I load the highstock.js file separately outside of any minification blocks then the site complains that I'm loading overlapping libraries, since you're supposed to use either highstock or highcharts.
What can I do here to tell grunt to include highstock.js instead of highcharts.js?
