File tree Expand file tree Collapse file tree 5 files changed +10
-31
lines changed
packages/@rescript/runtime Expand file tree Collapse file tree 5 files changed +10
-31
lines changed Original file line number Diff line number Diff line change @@ -326,12 +326,16 @@ jobs:
326326
327327 - name : Build runtime/stdlib with rewatch
328328 if : ${{ runner.os != 'Windows' }}
329- run : ./scripts/buildRuntimeRewatch.sh
329+ run : |
330+ yarn workspace @rescript/runtime clean:rewatch
331+ yarn workspace @rescript/runtime build:rewatch
330332 shell : bash
331333
332334 - name : Build runtime/stdlib with bsb (Windows)
333335 if : ${{ runner.os == 'Windows' }}
334- run : ./scripts/buildRuntime.sh
336+ run : |
337+ yarn workspace @rescript/runtime clean:bsb
338+ yarn workspace @rescript/runtime build:bsb
335339 shell : bash
336340
337341 - name : Check for changes in lib folder
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ clean-rewatch:
9494 cargo clean --manifest-path rewatch/Cargo.toml && rm -f rewatch/rewatch
9595
9696clean :
97- yarn workspace @rescript/runtime clean
97+ yarn workspace @rescript/runtime clean:rewatch
9898 dune clean
9999
100100clean-all : clean clean-gentype clean-rewatch
Original file line number Diff line number Diff line change 2222 "./package.json" : " ./package.json"
2323 },
2424 "scripts" : {
25+ "clean:rewatch" : " rewatch clean" ,
2526 "build:rewatch" : " rewatch build" ,
26- "build :bsb" : " rescript build " ,
27- "clean " : " rewatch clean "
27+ "clean :bsb" : " rescript clean " ,
28+ "build:bsb " : " rescript build "
2829 },
2930 "devDependencies" : {
3031 "rescript" : " workspace:^"
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments