My ClojureScript app is not compiling. It is throwing the error:
1 | (ns mock-file-system.api-service)
Invalid Filename, got mock_file_system/api-service.cljs but expected mock_file_system/api_service.cljs (or .cljc)
The calling namespace:
(ns mock-file-system.views
(:require
[re-frame.core :as re-frame]
[reagent.core :as reagent]
[mock-file-system.subs :as subs]
[mock-file-system.node :as node]
[mock-file-system.api-service :as api]
))
The required namespace:
(ns mock-file-system.api-service)
Thanks