lein cljsbuild
无法找到与另一个命名空间/文件一起定义的命名空间/文件,除非我确保它们按特定顺序编译。
我的目录布局如下所示:
project/
project.clj
src/
cljs/
contempo/
common/
defs.cljs
view/
core.cljs
navigation.cljs
navigation.cljs
有一些东西可以构建用于在页面中导航的Om组件,core.cljs
是此特定页面的主要入口点。 navigation.cljs
以:
(ns contempo.view.navigation (:require ...))
core.cljs
以:
(ns contempo.view.core (:require [contempo.view.navigation :as navigation]))
当我运行lein cljsbuild
时,我得到:
solace:Groov jfischer$ lein cljsbuild auto
Compiling ClojureScript.
Compiling "war/view/js/app.js" from ["src/cljs/contempo/common" "src/cljs/contempo/view"]...
Compiling "war/view/js/app.js" failed.
clojure.lang.ExceptionInfo: failed compiling file:src/cljs/contempo/view/core.cljs
... snipped stacktrace ...
Caused by: clojure.lang.ExceptionInfo: No such namespace: contempo.view.navigation at line 1 src/cljs/contempo/view/core.cljs
我可以通过从core.cljs删除对contempo.view.navigation
的所有引用,运行lein cljsbuild auto
并让编译完成,然后将它们放回并保存(因此cljsbuild获取更改)来实现它,但这很愚蠢,不一定是必要的。
我的project.clj
看起来像是:
(defproject contempo "0.0.0-SNAPSHOT"
:description "Experimenting with ClojureScript and Om"
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/clojurescript "0.0-2740"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
[org.omcljs/om "0.8.7"]]
:plugins [[lein-cljsbuild "1.0.4"]]
:clean-targets ^{:protect false} ["war/view/js/app.js"
"war/view/js/out"]
:cljsbuild {:builds [{:id "view-dev"
:source-paths ["src/cljs/contempo/common"
"src/cljs/contempo/view"]
:compiler {:output-to "war/view/js/app.js"
:output-dir "war/view/js/out"
:optimizations :none
:cache-analysis true
:source-map true}}]})
有什么明显的我做错了吗?这看起来非常类似于我所看到的每个ClojureScript项目。
更新:显示错误的微小骨架项目在这里:namespace-error-demo.zip
答案 0 :(得分:6)
问题最终是:我没有遵守命名空间如何解决的规则。
使用src/cljs/contempo/common
和src/cljs/contempo/view
的源路径,如果我需要contempo.view.whatever
命名空间,编译器会在src/cljs/contempo/common/contempo/view/whatever.cljs
和src/cljs/contempo/view/contempo/view/whatever.cljs
查找它。
我不得不使用src/cljs
作为源目录。我想要实现的目标(省略不需要它的给定页面的代码)有点愚蠢(因为它无论如何都会引入所有ClojureScript)并且现在可以通过{ {3}}
答案 1 :(得分:3)
我今天遇到同样的问题。在我的情况下,根本原因是使用" - "的.cljs文件。在名字里。我只是在切换到0.0-3030之后才发现这是问题,这为更新版本的cljs编译器具有的命名空间约定的严格文件路径提供了更好的错误消息。
您可以尝试将:source-paths
更改为["src/cljs"]