File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -333,11 +333,11 @@ _test-clojure: export TARGET := clojure
333
333
_test-clojure : export WATCH ?= false
334
334
_test-clojure :
335
335
ifeq ($(WATCH ) , true)
336
- yarn install && \
336
+ node-gyp-pre rebuild && \
337
337
yarn shadow-cljs compile mocks && \
338
338
nodemon --exec "yarn shadow-cljs compile test && node --require ./test-resources/override.js $$SHADOW_OUTPUT_TO" -e cljs
339
339
else
340
- yarn install && \
340
+ node-gyp-pre rebuild && \
341
341
yarn shadow-cljs compile mocks && \
342
342
yarn shadow-cljs compile test && \
343
343
node --require ./test-resources/override.js "$$SHADOW_OUTPUT_TO"
@@ -351,7 +351,7 @@ test: _test-clojure
351
351
test-watch-for-repl : export SHADOW_OUTPUT_TO := target/test/test.js
352
352
test-watch-for-repl : export SHADOW_NS_REGEXP := .* -test$$
353
353
test-watch-for-repl : # #@test Watch all Clojure tests and support REPL connections
354
- yarn install
354
+ node-gyp-pre rebuild
355
355
rm -f target/test/test.js
356
356
yarn shadow-cljs compile mocks && \
357
357
concurrently --kill-others --prefix-colors ' auto' --names ' build,repl' \
You can’t perform that action at this time.
0 commit comments