Skip to content

Commit 5ba2540

Browse files
author
dnolen
committed
add build.edn
1 parent d38e001 commit 5ba2540

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

build.edn

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{:optimizations :advanced
2+
:main test-runner
3+
:output-wrapper true
4+
:verbose true
5+
:compiler-stats true
6+
:parallel-build true
7+
:output-dir "builds/out-adv"
8+
:npm-deps {:lodash "4.17.4"}
9+
:closure-warnings {:non-standard-jsdoc :off :global-this :off}
10+
:install-deps true
11+
:language-in :es6
12+
:language-out :es5
13+
:foreign-libs [{:file "src/test/cljs/calculator_global.js"
14+
:provides ["calculator"]
15+
:global-exports {calculator Calculator}}
16+
{:file "src/test/cljs/es6_dep.js"
17+
:module-type :es6
18+
:provides ["es6_calc"]}
19+
{:file "src/test/cljs/calculator.js"
20+
:module-type :commonjs
21+
:provides ["calculator"]}
22+
{:file "src/test/cljs/es6_default_hello.js"
23+
:provides ["es6_default_hello"]
24+
:module-type :es6}]}

0 commit comments

Comments
 (0)