0

我正在尝试使用 yeoman 生成的 Gruntfile.js 文件运行默认的 grunt 构建任务。

该文件适用于生成的应用程序,但是一旦我将文件替换为当前应用程序的文件,我就会收到中断该过程的警告。

这是跟踪:

Running "clean:dist" (clean) task
>> 31 paths cleaned.

Running "wiredep:app" (wiredep) task

Running "wiredep:test" (wiredep) task

Running "useminPrepare:html" (useminPrepare) task
Configuration changed for concat, uglify, cssmin

Running "concurrent:dist" (concurrent) task

Running "svgmin:dist" (svgmin) task
Total saved: 0 B

Done, without errors.


Execution Time (2015-04-13 14:28:10 UTC)
loading tasks   6ms  ████ 8%
svgmin:dist    68ms  ███████████████████████████████████████████ 91%
Total 75ms

Running "copy:styles" (copy) task
Copied 12 files

Done, without errors.


Execution Time (2015-04-13 14:28:10 UTC)
loading tasks    4ms  ██ 3%
copy:styles    131ms  ██████████████████████████████████████████████ 96%
Total 136ms

Running "imagemin:dist" (imagemin) task
Minified 315 images (saved 1.39 MB)

Done, without errors.


Execution Time (2015-04-13 14:28:10 UTC)
imagemin:dist  10.9s  ███████████████████████████████████████████████ 100%
Total 10.9s

Running "autoprefixer:server" (autoprefixer) task
>> 12 autoprefixed stylesheets created.

Running "autoprefixer:dist" (autoprefixer) task
>> 12 autoprefixed stylesheets created.

Running "concat:generated" (concat) task
File .tmp\concat\scripts\vendor.js created.
File .tmp\concat\scripts\scripts.js created.
File .tmp\concat\filters created.
Warning: Unable to write ".tmp\concat\scripts\" file (Error code: EISDIR).   Use --force to continue.

我不知道这可能来自哪里。它似乎来自 useminPrepare 任务,然后调用 concat 但我不确定:

useminPrepare: {
  html: '<%= yeoman.app %>/index.html',
  options: {
    dest: '<%= yeoman.dist %>',
    flow: {
      html: {
        steps: {
          js: ['concat', 'uglifyjs'],
          css: ['cssmin']
        },
        post: {}
      }
    }
  }
}

谢谢你的帮助。

[编辑] 我的 concat 任务在默认生成的 Gruntfile.js 中被注释

// The following *-min tasks will produce minified files in the dist folder
// By default, your `index.html`'s <!-- Usemin block --> will take care of
// minification. These next options are pre-configured if you do not wish
// to use the Usemin blocks.
// cssmin: {
//   dist: {
//     files: {
//       '<%= yeoman.dist %>/styles/main.css': [
//         '.tmp/styles/{,*/}*.css'
//       ]
//     }
//   }
// },
// uglify: {
//   dist: {
//     files: {
//       '<%= yeoman.dist %>/scripts/scripts.js': [
//         '<%= yeoman.dist %>/scripts/scripts.js'
//       ]
//     }
//   }
// },
// concat: {
//   dist: {}
// },
4

0 回答 0