码迷,mamicode.com
首页 > 其他好文 > 详细

Sublime Text编译CoffeeScript出错解决方案

时间:2015-03-22 01:47:23      阅读:289      评论:0      收藏:0      [点我收藏+]

标签:解决方案   编译   coffee   安装   出错   

今天尝试用Sublime Text编译CoffeeScript
先安装了CoffeeScript的插件, 然后编译器中多了一项CoffeeScript, 但是尝试编译却提示出错, 然后上网寻找解决方法无解…于是就自己尝试去改了下SublimeText的build命令, 结果成功了

出错信息如下:


/usr/local/lib/node_modules/coffee-script/lib/coffee-script/cake.js:111
    throw new Error("Cakefile not found in " + (process.cwd()));
          ^
Error: Cakefile not found in /home/bill/Desktop
  at cakefileDirectory (/usr/local/lib/node_modules/coffee-script/lib/coffee-script/cake.js:111:11)
  at cakefileDirectory (/usr/local/lib/node_modules/coffee-script/lib/coffee-script/cake.js:109:14)
  at cakefileDirectory (/usr/local/lib/node_modules/coffee-script/lib/coffee-script/cake.js:109:14)
  at cakefileDirectory (/usr/local/lib/node_modules/coffee-script/lib/coffee-script/cake.js:109:14)
  at Object.exports.run (/usr/local/lib/node_modules/coffee-script/lib/coffee-script/cake.js:51:19)
  at Object.<anonymous> (/usr/local/lib/node_modules/coffee-script/bin/cake:7:38)
  at Module._compile (module.js:456:26)
  at Object.Module._extensions..js (module.js:474:10)
  at Module.load (module.js:356:32)
  at Function.Module._load (module.js:312:12)
  at Function.Module.runMain (module.js:497:10)
  at startup (node.js:119:16)
  at node.js:929:3

[Finished in 0.1s with exit code 8]

解决方法:

打开CoffeeScript插件的位置(我的是”/usr/share/sublime-text/Data/Packages/CoffeeScript”)中的CoffeeScript.sublime-build文件, 将内容修改为{ "cmd": ["coffee", "$file"], "selector": "source.coffee" }
然后就可以用Sublime Text编译Coffee文件了

Sublime Text编译CoffeeScript出错解决方案

标签:解决方案   编译   coffee   安装   出错   

原文地址:http://blog.csdn.net/huangxiongbiao/article/details/44530481

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!