我不知道是否有一種簡單的方法可以將LiveScript文件編譯爲Meteor.js應用程序中的js。發現這個地鐵延伸:LiveScript與Meteor.js
https://atmosphere.meteor.com/package/livescript-latest
但這樣做mrt add livescript-latest
只給出了錯誤:
While building package `livescript-latest`:
package.js:3:9: Package.register_extension() is no longer supported. Use Package._transitional_registerBuildPlugin instead.
在這種擴展錯誤已經是固定的混帳回購協議。因此,我可以這樣直接smart.json:
"livescript-latest": {
"git": "https://github.com/Whoaa512/meteor-livescript.git",
"branch": "master"
}
這似乎安裝罰款,但是當我嘗試添加.ls文件添加到項目,他們似乎不被編譯。
其他人試圖用Meteor.js應用程序LiveScripting?
謝謝,成功了! –