我使用安装引导程序bower install bootstrap
我正在使用 grunt 来构建我的项目。我正在尝试添加引导程序并排除 bootstrap.js 文件。
// Automatically inject Bower components into the app
wiredep: {
options: {
cwd: '<%= yeoman.app %>'
},
app: {
src: ['<%= yeoman.app %>/index.html'],
exclude: ['bower_components/bootstrap/dist/js/bootstrap.js'],
ignorePath: /\.\.\//
}
}
豪尔bower_components/bootstrap/dist/js/bootstrap.js
总是包括在内。
如何排除引导 javascript 文件?