我有来自 yeoman-angular 生成器的 Angular 应用程序。
我确实在 index.html 中有该代码:
<!-- build:js(.) scripts/vendor.js -->
<!-- bower:js -->
...
<script src="bower_components/moment/moment.js"></script>
...
<!-- endbower -->
<!-- endbuild -->
然后在 Gruntfile 中:
wiredep: {
app: {
src: ['<%= yeoman.app %>/index.html'],
ignorePath: /\.\.\//
}
}
问题是我的项目中不仅需要moment/moment.js,还需要min/moment-with-locales.js。当然,在 index.html 中手动更改也无济于事。
也许有一些方法可以覆盖应该用于构建的库文件?