Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/javascript/389.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript 无法在Mac上运行节点应用程序_Javascript_Node.js_Sass_Gruntjs_Yeoman - Fatal编程技术网

Javascript 无法在Mac上运行节点应用程序

Javascript 无法在Mac上运行节点应用程序,javascript,node.js,sass,gruntjs,yeoman,Javascript,Node.js,Sass,Gruntjs,Yeoman,我从我的windows机器上复制了这个应用程序并重新安装了依赖项,它似乎在sass过程中出错,但除此之外,我不知道如何取得任何进展 如果我强制应用程序似乎运行良好,只是没有编译的CSS Running "serve" task Running "clean:server" (clean) task >> 1 path cleaned. Running "wiredep:app" (wiredep) task Running "wiredep:sass" (wiredep) ta

我从我的windows机器上复制了这个应用程序并重新安装了依赖项,它似乎在sass过程中出错,但除此之外,我不知道如何取得任何进展

如果我强制应用程序似乎运行良好,只是没有编译的CSS

Running "serve" task

Running "clean:server" (clean) task
>> 1 path cleaned.

Running "wiredep:app" (wiredep) task

Running "wiredep:sass" (wiredep) task

Running "concurrent:server" (concurrent) task

Running "copy:styles" (copy) task


Done, without errors.


Execution Time (2015-02-05 19:33:23 UTC)
loading tasks    2s  ▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 98%
copy:styles    37ms  ▇ 2%
Total 2s
    Warning: Running "sass:server" (sass) task
Warning: spawn ENOENT Use --force to continue.

Aborted due to warnings.


Execution Time (2015-02-05 19:33:23 UTC)
loading tasks    2s  ▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 98%
sass:server    47ms  ▇▇ 2%
Total 2s Use --force to continue.

    Aborted due to warnings.


Execution Time (2015-02-05 19:33:21 UTC)
loading tasks       1.7s  ▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 37%
wiredep:app        251ms  ▇▇▇ 6%
concurrent:server   2.6s  ▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 57%
Total 4.5s

您使用的是什么sass编译器?如果是compass,你安装了Ruby(和compass)吗?我正在使用yeoman提供的grunt contrib sass,对吧,所以在他们的文档中:“这个任务要求你安装Ruby和sass。”。。。你…吗?尝试运行
ruby-v
。如果有效,请执行
gem list
,并确保
sass
在该列表中。如果没有,请运行
gem安装sass
yes我在本地gems中安装了sass。