lein cljsbuild завершается ошибкой с невозможностью отслеживания.Как вы устраняете ошибки cljsbuild? - PullRequest
0 голосов
/ 13 февраля 2019

Я не вижу ни одного файла журнала для компиляции, и ошибка в терминале недостаточна для дальнейшего устранения неполадок.Как получить более подробное ведение журнала ошибок или как мне решить эту проблему?

Первые несколько строк из stacktrace ниже

Compiling ClojureScript...
Compiling ["resources/public/js/app.js"] from ["src/cljs"]...
Compiling ["resources/public/js/app.js"] failed.
clojure.lang.ExceptionInfo: failed compiling file:resources\public\js\out\cljs\core.cljs {:file #object[java.io.File 0x7c5d1d25 "resources\\public\\js\\out\\cljs\\core.cljs"], :clojure.error/phase :compilation}
        at cljs.compiler$compile_file$fn__3901.invoke(compiler.cljc:1706)
        at cljs.compiler$compile_file.invokeStatic(compiler.cljc:1666)

У меня есть простой файл cljs со следующим содержимым

(ns moose.core)   
(defn run []
  (.write js/document "This is not the end!"))

Мой project.clj имеет следующую конфигурацию для cljsbuild

:cljsbuild
  {:builds [{:id           "dev"
             :source-paths ["src/cljs"]
             :figwheel {:on-jsload "moose.core/run"
                        :open-urls ["http://localhost:3449/index.html"]}
             :jar true
             :compiler     {:main moose.core 
                            :warnings true
                            :output-dir "resources/public/js/out" 
                            :asset-path "js/out"
                            :output-to "resources/public/js/app.js"}}]}
  :clean-targets ^{:protect false} [:target-path :compile-path "resources/public/js" "dev-target"]

Обновление 1 Следуя советам Алана ниже, я создал новый шаблон и сузил причину додобавление довольно старой библиотеки для взаимодействия с CouchDB

[com.ashafa / clutch "0.4.0"]

Остается вопрос, как получить подробные / полные логидля cljsbuild.

Обновление 2 Оказывается, положение библиотеки в списке зависимостей оказывает влияние.Если он появляется раньше [com.cognitect / транзит-clj "0.8.313"] компиляция завершится неудачно, иначе он будет работать.

1 Ответ

0 голосов
/ 13 февраля 2019

Параметры конфигурации в ClojureScript плохо документированы.Проще всего клонировать существующий (рабочий) проект и перейти оттуда.Я бы предложил начать с проекта cljs-template следующим образом (см. README):

git clone  https://github.com/cloojure/cljs-template.git  demo-0212  ; temp 

> cd demo-0212 
~/expr/demo-0212 > ls -ldF *
-rwxrwxr-x 1 alan alan  222 Feb 12 16:04 npm-install.bash*
-rwxrwxr-x 1 alan alan 4216 Feb 12 16:04 project.clj*
-rw-rw-r-- 1 alan alan 1576 Feb 12 16:04 README.adoc
drwxrwxr-x 3 alan alan 4096 Feb 12 16:04 resources/
drwxrwxr-x 5 alan alan 4096 Feb 12 16:04 src/
drwxrwxr-x 4 alan alan 4096 Feb 12 16:04 test/

~/expr/demo-0212 > ./npm-install.bash 
...<snip>... lots of stuff

На данный момент в вашем проекте есть npm, необходимый для юнит-тестов.

> lein clean
> lein doo phantom test once

;; ======================================================================
;; Testing with Phantom:

doorunner - beginning
doorunner - end

Testing tst.flintstones.dino
test once - enter
globalObject:   #js {:a 1, :b 2, :c 3}
(-> % .-b (+ 5) => 7
(js/makeDino) => #js {:desc blue dino-dog, :says #object[Function]}
dino.desc =>  blue dino-dog
dino.says(5) =>  Ruff-Ruff-Ruff-Ruff-Ruff!
:keep-words ("am" "having" "today")
:re-seq ("am" "having" "today")
test once - leave

Testing tst.flintstones.wilma
test each - enter
test each - leave
test each - enter
wilmaPhony/stats:    #js {:lipstick red, :height 5.5}
wilma => #js {:desc patient housewife, :says #object[Function]}
test each - leave

Testing tst.flintstones.pebbles
test once - enter
test once - leave

Testing tst.flintstones.slate
logr-slate-enter
logr-slate-leave 3

Testing tst.flintstones.bambam
test each - enter
test each - leave
test each - enter
logr-bambam-enter
logr-bambam-leave 3
test each - leave

Ran 9 tests containing 22 assertions.
0 failures, 0 errors.
lein doo phantom test once  38.73s user 1.05s system 313% cpu 12.701 total

Вы можете также запустить figwheel, чтобы увидеть результаты в браузере:

> lein clean
> lein figwheel

see new webpage (30-60 sec delay)

------------------------
Figwheel template
Checkout your developer console.

I am a component!

I have bold and red text.
...etc...
------------------------
...