使 grunt bower 从 "bower_components" 获得缩小版本

Make grunt bower get minified version from "bower_components"

在我的 GruntFile.js 我有 bower 任务:

bower: {
    dev: {
        dest: 'lib'// will get stuff from 'bower_components' to 'lib' folder
    }
},

所以当我这样做时:grunt bower 它将 一些 的东西从 bower_component 文件夹转换到 lib.. 所以我最终得到了文件喜欢:angular.js 在 /lib.

但它不会复制位于 bower_component.

中的 "angular.min.js"

问:我如何配置 grunt bower 任务来复制文件的缩小 v?

我现在还不想将 minify/uglify 任务放入 GruntFile。由于这些文件已经缩小到 bower_components.

您应该使用 bower 任务来下载 bower 组件并添加复制任务以根据需要移动文件。

安装 grunt-contrib-copy

npm install grunt-contrib-copy --save-dev

并在你的 grunt 文件中使用它:

grunt.loadNpmTasks('grunt-contrib-copy');

grunt.initConfig({
    pkg: grunt.file.readJSON('package.json'),  
    /* more tasks... */
    copy: {
      main: {
        files: [
          // includes files within path
          {expand: true, src: ['path/*'], dest: 'dest/', filter: 'isFile'},

          // includes files within path and its sub-directories
          {expand: true, src: ['path/**'], dest: 'dest/'},

          // makes all src relative to cwd
          {expand: true, cwd: 'path/', src: ['**'], dest: 'dest/'},

          // flattens results to a single level
          {expand: true, flatten: true, src: ['path/**'], dest: 'dest/', filter: 'isFile'},
        ],
      },
    }
});

您可以将其配置为只复制 **.min.js 个文件。