我最近安裝了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,
...
)
關於我需要做什麼才能成功導入的任何建議是模塊?
注意到你正在談論的測試,也許你在你的主應用程序安裝List.Extra,但不是在測試目錄? –
我通過重新啓動IDE來解決它。 –
@ScottNimrod然後刪除此問題或添加一個答案並接受它,以便此問題顯示爲已解決。 –