我想创建一个编译一些 CoffeeScripts 来安装 NodeJS 应用程序的 Jakefile。
你是怎样做的?
我试过: https ://gist.github.com/1241827
但这是一种弱方法,绝对不是优雅的。
有什么提示吗?
我想创建一个编译一些 CoffeeScripts 来安装 NodeJS 应用程序的 Jakefile。
你是怎样做的?
我试过: https ://gist.github.com/1241827
但这是一种弱方法,绝对不是优雅的。
有什么提示吗?
我用过的大概片段:
var fs = require('fs')
var coffee = require('coffee-script')
// If you'd like to see compiled code..
// console.log(coffee.compile(fs.readFileSync('coffee.coffee')))
// ..otherwise
fs.writeFileSync('output.js', coffee.compile(fs.readFileSync('input.coffee')))
..当然,假设您已经coffee-script
安装了节点模块。
翻译自我的这个Cakefile。