2015-10-14 23 views
0

嘗試使用波旁威士忌與我的流星項目。嘗試運行服務器時,我不斷收到問題。我試圖用這個包https://atmospherejs.com/wolves/neat但得到這個錯誤:波本威士忌與流星的整潔

While processing files with fourseven:scss (for target web.browser): 
    /client/stylesheets/main.scss: Scss compiler error: File to import: 
    {wolves:bourbon}/bourbon not found. Import origin: 
    /client/stylesheets/main.scss 

任何一個有一個修復或替代?

回答

0

停止應用程序,然後重新啓動:

Docs:

Because Meteor will attempt to compile you app's local stylesheets prior to copying the server assets directory, the first time you run the app after installing the package your app will complain that it is unable to find it. For the moment this can be resolved by either stopping and restarting the app, at which point you should no longer get this error message, or running touch on you local stylesheet thats attempting to access the package, triggering a reload.

0

因此,無論插件與流星的最新版本打破。我不得不明確說明沃爾夫的純淨和波旁威士忌的使用版本。

meteor add wolves:[email protected] 
meteor add wolves:[email protected] 

然後只要確保您導入文件中所述的文件,沒有更多的問題!

相關問題