2017-06-05 172 views
0

我最近安裝了Elm的List.Extra包。無法從包中導入模塊

我試圖從包裝具有以下導入List.Extra模塊:

module Tests.TestAPI exposing (..) 

import List.Extra as ListHelper exposing (..) 

不過,我收到以下錯誤:

  • I cannot find module 'List.Extra'.

Module 'Tests.TestAPI' is trying to import it.

Potential problems could be: * Misspelled the module name * Need to add a source directory or new dependency to elm-package.json

的List.Extra模塊看起來像如下:

module List.Extra 
    exposing 
     (last, 
      ... 
     ) 

關於我需要做什麼才能成功導入的任何建議是模塊?

+1

注意到你正在談論的測試,也許你在你的主應用程序安裝List.Extra,但不是在測試目錄? –

+0

我通過重新啓動IDE來解決它。 –

+0

@ScottNimrod然後刪除此問題或添加一個答案並接受它,以便此問題顯示爲已解決。 –

回答

0

我解決它通過重新啓動我的IDE(Visual Studio代碼)

+0

不要忘記接受你自己的答案。否則,這仍然不會成爲解決問題。 –

+0

它不會讓我接受另外4個小時。 –

+0

好的謝謝。我不知道接受自我答覆的這個限制。我認爲這太糟糕了。 –