Yeoman,grunt和bower:可以在没有javascript文件的情况下安装bootstrap吗?

时间:2014-08-15 23:57:26

标签: gruntjs bower bower-install grunt-wiredep

我使用bower install bootstrap

安装bootstrap

我正在使用grunt来构建我的项目。我正在尝试添加bootstrap并排除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:  /\.\.\//
  }
}

总是包括Hower bower_components/bootstrap/dist/js/bootstrap.js

如何排除bootstrap javascript文件?

1 个答案:

答案 0 :(得分:4)

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