我希望grunt-contrib-coffee可以与blackcoffee一起使用,但似乎它直接使用咖啡脚本npm模块,而不是调用可调用blackcoffee的coffee
可执行文件。我已经四处查看是否有任何预先存在的用于blackcoffee的Grunt插件,但事实并非如此。
有关如何配置Grunt以便grunt watch
让我编译我的blackcoffee代码的任何建议吗?
答案 0 :(得分:0)
不知道这是否有效,但我认为应该:
grunt-blackcoffee
在grunt任务currently it's here中搜索coffee-script require:
return require('coffee-script').compile(code, coffeeOptions);
并将其替换为
return require('blackcoffee').compile(code, coffeeOptions);
将其发布到npm
如果您不想发布到npm,可以从git:
安装软件包$ npm install git+ssh://your-git-repo.git --save