使用Yeoman构建的Grunt使用EISDIR错误代码生成Gruntfile中断

时间:2015-04-13 14:46:43

标签: javascript gruntjs yeoman yeoman-generator-angular grunt-contrib-concat

我试图使用自己的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: {}
// },

0 个答案:

没有答案