Skip to content

Commit

Permalink
add build.edn
Browse files Browse the repository at this point in the history
  • Loading branch information
dnolen committed Aug 24, 2018
1 parent d38e001 commit 5ba2540
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions build.edn
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{:optimizations :advanced
:main test-runner
:output-wrapper true
:verbose true
:compiler-stats true
:parallel-build true
:output-dir "builds/out-adv"
:npm-deps {:lodash "4.17.4"}
:closure-warnings {:non-standard-jsdoc :off :global-this :off}
:install-deps true
:language-in :es6
:language-out :es5
:foreign-libs [{:file "src/test/cljs/calculator_global.js"
:provides ["calculator"]
:global-exports {calculator Calculator}}
{:file "src/test/cljs/es6_dep.js"
:module-type :es6
:provides ["es6_calc"]}
{:file "src/test/cljs/calculator.js"
:module-type :commonjs
:provides ["calculator"]}
{:file "src/test/cljs/es6_default_hello.js"
:provides ["es6_default_hello"]
:module-type :es6}]}

0 comments on commit 5ba2540

Please sign in to comment.