1

我使用安装引导程序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 文件?

4

1 回答 1

4

似乎exclude: ['bootstrap.js']解决了我的问题。然而,这不是很清楚的记录......

于 2014-08-16T23:12:01.970 回答