新的coffeescript,运行cakefile时产生ENOENT错误

时间:2013-09-20 17:11:47

标签: node.js coffeescript

我对Coffee-script很新。我正在尝试使用“cake build”命令进行编译。

我收到此错误。

events.js:72 扔掉;

错误:产生ENOENT       在errnoException(child_process:980:11)       在Process.ChildProcess._handle.onexit(child_process.js:771:34)

这是Cake文件&我在windows-7上运行

fs    = require 'fs'
path  = require 'path'
spawn = require('child_process').spawn
hamlc = require('haml-coffee')

ROOT_PATH           = __dirname
COFFEESCRIPTS_PATH  = path.join(ROOT_PATH, '/src')
JAVASCRIPTS_PATH    = path.join(ROOT_PATH, '/build')

log = (data)->
console.log data.toString().replace('\n','')

runCmd = (cmd, args, exit_cb) ->
ps = spawn(cmd, args)
ps.stdout.on('data', log)
ps.stderr.on('data', log)
ps.on 'exit', (code)->
if code != 0
  console.log 'failed'
else
  exit_cb?()

coffee_available = ->
present = false
process.env.PATH.split(':').forEach (value, index, array)->
present ||= path.exists("#{value}/coffee")

  present

 if_coffee = (callback)->
 unless coffee_available
 console.log("Coffee Script can't be found in your $PATH.")
 console.log("Please run 'npm install coffees-cript.")
 exit(-1)
 else
 callback()

task 'build_haml', 'Build HAML Coffee templates', ->
if_coffee -> 
runCmd(path.join(path.dirname(require.resolve("haml-coffee")), "bin/haml-coffee"), 
  ["-i", "views", "-o", "build/templates.js", "-b", "views"])

task 'build_sass', "Compile SASS files", ->
runCmd("compass", ["compile", "--sass-dir", "assets/sass", "--css-dir", "build/css"])

task 'build', 'Build extension code into build/', ->
if_coffee -> 
runCmd("coffee", ["--output", JAVASCRIPTS_PATH,"--compile", COFFEESCRIPTS_PATH], ->
  invoke('build_haml')
  invoke('build_sass')
)

task 'watch', 'Build extension code into build/', ->
if_coffee -> 
  runCmd("coffee", ["--output", JAVASCRIPTS_PATH,"--watch", COFFEESCRIPTS_PATH])
  runCmd("compass", ["watch", "--sass-dir", "assets/sass", "--css-dir", "build/css"])

task 'test', ->
if_coffee -> 
runCmd("mocha", ["--compilers", "coffee:coffee-script", "tests/"])

2 个答案:

答案 0 :(得分:1)

你的缩进已经关闭。

log = (data)->
console.log data.toString().replace('\n','')

转换为:

var log;    
log = function(data) {};    
console.log(data.toString().replace('\n', ''));

函数体应缩进2个空格:

log = (data)->
  console.log data.toString().replace('\n','')

答案 1 :(得分:0)

@ user2475624

您收到错误的原因是因为您没有安装指南针。如果你安装了ruby,试试这个,

gem install compass

sudo gem install compass