有没有办法使用 Harp 服务器连接 JS 和 CoffeeScript 文件?

Is there a way to concatenate JS and CoffeeScript files using Harp server?

我想从 HarpJS 服务器请求 /js/app.js 并让它预处理 coffeescript 和 javascript 的文件夹。例如,假设我有:

/js/module/a.js
/js/module/b.coffee
/js/module/c.coffee
/js/app.coffee

有没有一种方法可以请求 /js/app.js,以便响应包含 /js/module/a.js/js/module/b.js 的串联。和 /js/module/c.js 回复?

我最终自定义了 terraform 模块,编写了一个名为 man 的预处理器。

这是与 Harp 的区别: https://github.com/sintaxi/terraform/compare/master...thesmart:master