2014-01-12 55 views
1

我不知道是否有一種簡單的方法可以將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?

回答

1

嘗試使用其他livescript package。我不確定爲什麼有人創建了livescript-latest包 - 兩者似乎都使用了livescript的1.2.0版本。

mrt add livescript 

當我使用LiveScript時,這對我有用。

+0

謝謝,成功了! –