-
Notifications
You must be signed in to change notification settings - Fork 1
/
shadow-cljs.edn
32 lines (31 loc) · 1.7 KB
/
shadow-cljs.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{:source-paths ["src" "cli"]
:dependencies [[mvc-works/hsl "0.1.2"]
[mvc-works/verbosely "0.1.2"]
[mvc-works/keycode "0.1.3"]
[mvc-works/shell-page "0.1.7"]
[respo "0.8.16"]]
:open-file-command ["subl" ["%s:%s:%s" :file :line :column]]
:socket-repl {:port 0}
:builds {:client {:target :browser
:output-dir "target/"
:asset-path "./"
:modules {:client {:entries [app.main]}}
:devtools {:after-load app.main/reload!
:http-root "target"
:http-port 7000}
:compiler-options {:infer-externs :auto}
:js-options {:resolve {"OBJLoader2" {:target :file
:file "loaders/OBJLoader2.js"}
"STLLoader" {:target :file
:file "loaders/STLLoader.js"}
"GLTFLoader" {:target :file
:file "loaders/GLTFLoader.js"}
"LoaderSupport" {:target :file
:file "loaders/LoaderSupport.js"}}}
:release {:output-dir "dist/"
:module-hash-names 8
:build-options {:manifest-name "assets.edn"}}}
:page {:target :node-script
:output-to "target/page.js"
:main app.page/main!
:devtools {:after-load app.page/main!}}}}