File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ mkdir -p builds/out-adv
12
12
possible=5
13
13
ran=0
14
14
15
- if ! bin/cljsc src/test/cljs " {:optimizations :advanced :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} :foreign-libs [{:file \" src/test/cljs/calculator_global.js\" :provides [\" calculator\" ] :global-exports {calculator Calculator}}]}" > builds/out-adv/core-advanced-test.js; then
15
+ if ! bin/cljsc src/test/cljs " {:optimizations :advanced :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 : foreign-libs [{:file \" src/test/cljs/calculator_global.js\" :provides [\" calculator\" ] :global-exports {calculator Calculator}}]}" > builds/out-adv/core-advanced-test.js; then
16
16
>&2 echo ClojureScript compilation failed
17
17
exit 1
18
18
fi ;
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ possible=5
12
12
ran=0
13
13
14
14
# bin/cljsc test >out/core-test.js
15
- if ! bin/cljsc src/test/cljs " {:optimizations :simple :static-fns true :output-dir \" builds/out-simp\" :cache-analysis true :output-wrapper true :verbose true :compiler-stats true :npm-deps {:lodash \" 4.17.4\" } :closure-warnings {:non-standard-jsdoc :off :global-this :off} :foreign-libs [{:file \" src/test/cljs/calculator_global.js\" :provides [\" calculator\" ] :global-exports {calculator Calculator}}]}" > builds/out-simp/core-simple-test.js; then
15
+ if ! bin/cljsc src/test/cljs " {:optimizations :simple :static-fns true :output-dir \" builds/out-simp\" :cache-analysis true :output-wrapper true :verbose true :compiler-stats true :npm-deps {:lodash \" 4.17.4\" } :closure-warnings {:non-standard-jsdoc :off :global-this :off} :install-deps true : foreign-libs [{:file \" src/test/cljs/calculator_global.js\" :provides [\" calculator\" ] :global-exports {calculator Calculator}}]}" > builds/out-simp/core-simple-test.js; then
16
16
>&2 echo ClojureScript compilation failed
17
17
exit 1
18
18
fi ;
Original file line number Diff line number Diff line change 216
216
:opts {:main 'npm-deps-test.core
217
217
:output-dir out
218
218
:optimizations :none
219
+ :install-deps true
219
220
:npm-deps {:left-pad " 1.1.3" }
220
221
:closure-warnings {:check-types :off }}}
221
222
cenv (env/default-compiler-env )]
229
230
:opts {:main 'npm-deps-test.string-requires
230
231
:output-dir out
231
232
:optimizations :none
233
+ :install-deps true
232
234
:npm-deps {:react " 15.6.1"
233
235
:react-dom " 15.6.1"
234
236
:lodash " 4.17.4" }
298
300
:output-dir out
299
301
:optimizations :none
300
302
:target :nodejs
303
+ :install-deps true
301
304
:npm-deps {:react " 15.6.1"
302
305
:react-dom " 15.6.1" }
303
306
:closure-warnings {:check-types :off
You can’t perform that action at this time.
0 commit comments