Sublime Text编译CoffeeScript出错解决方案

来源:互联网 发布:淘宝客卖家平台 编辑:程序博客网 时间:2024/05/05 19:21

今天尝试用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文件了

0 0
原创粉丝点击