1

我使用 yoeman generator-angular 来构建一个项目,现在我在构建时遇到错误。我收到此错误:

Running "concurrent:dist" (concurrent) task

    Running "coffee:dist" (coffee) task

    Running "coffee:test" (coffee) task

    Done, without errors.

    Elapsed time
    coffee:test  20ms
    Total        23ms

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

    Done, without errors.

    Elapsed time
    copy:styles  29ms
    Total        29ms

        Warning: 
        /My/Project/Directory/node_modules/grunt-contrib-compass/node_modules/tmp/lib/tmp.js:261
          throw err;
                ^
        Error: spawn EACCES
            at errnoException (child_process.js:980:11)
            at Process.ChildProcess._handle.onexit (child_process.js:771:34) Used --force, continuing.

它似乎发生在咖啡:测试任务之后以及与 grunt-contrib-compass 插件有关。我在堆栈交换上找不到任何帮助我的东西。

我在跑步:

咕噜声-cli v0.1.8

咕噜声 v0.4.1

npm 1.3.8

节点 v0.10.18

我尝试更新生成器无济于事。我希望有人能帮助我吗?

4

1 回答 1

3

我遇到了同样的错误,看起来 Compass 要么未安装,要么无法访问。当我制作时它变得更好:

> gem install compass

希望这可以帮助!

于 2013-10-14T10:17:44.993 回答