使用 npm 和 gulpfile 安装 livescript 和 prelude-ls - 没有 prelude-browser 吗?

Installing livescript and prelude-ls with npm and a gulpfile - is there no prelude-browser?

我已经成功安装并使用了 livescript 及其 prelude-ls 库和 bower。我加载了 prelude-browser-min.js:

// gulpfile
'static/bower_components/prelude-ls/browser/prelude-browser-min.js', 

并且我能够在我的应用程序代码中导入函数:{map, filter, lines} = require 'prelude-ls'

现在我要从我的堆栈中删除 bower。我还用 npm 安装了 livescript 和一个 prelude-ls 包,但是没有 prelude-browser-min.js 文件了(虽然 the doc 说要使用那个)。至于 javascript 文件,在 lib 目录下有一些文件:index.jsObj.js 等。我试图加载它们(prelude-ls/**/*.js)但是是其中某处的 module.exports 行,它无法加载我的应用程序 ("module is not defined")。

如果没有prelude-browser-min.js,我该怎么办?

更新:相关问题:https://github.com/gkz/prelude-ls/issues/73

好吧,那我就留凉亭吧!