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:
326
326
327
327
- name : Build runtime/stdlib with rewatch
328
328
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
330
332
shell : bash
331
333
332
334
- name : Build runtime/stdlib with bsb (Windows)
333
335
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
335
339
shell : bash
336
340
337
341
- name : Check for changes in lib folder
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ clean-rewatch:
96
96
cargo clean --manifest-path rewatch/Cargo.toml && rm -f rewatch/rewatch
97
97
98
98
clean :
99
- yarn workspace @rescript/runtime clean
99
+ yarn workspace @rescript/runtime clean:rewatch
100
100
dune clean
101
101
102
102
clean-all : clean clean-gentype clean-rewatch
Original file line number Diff line number Diff line change 22
22
"./package.json" : " ./package.json"
23
23
},
24
24
"scripts" : {
25
+ "clean:rewatch" : " rewatch clean" ,
25
26
"build:rewatch" : " rewatch build" ,
26
- "build :bsb" : " rescript build " ,
27
- "clean " : " rewatch clean "
27
+ "clean :bsb" : " rescript clean " ,
28
+ "build:bsb " : " rescript build "
28
29
},
29
30
"devDependencies" : {
30
31
"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