File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change 1
1
#!/ usr/ bin/ env -S just --justfile
2
2
3
+ set windows-shell := [" powershell.exe" , " -NoLogo" , " -Command" ]
4
+ set shell := [" bash" , " -cu" ]
5
+
3
6
_ default :
4
7
@ just --list -u
5
8
14
17
15
18
install :
16
19
pnpm install
17
- cd fixtures/ pnp && yarn
18
- cd fixtures/ global-pnp && yarn
19
- cd fixtures/ yarn && yarn
20
+ cd fixtures/ pnp; yarn
21
+ cd fixtures/ global-pnp; yarn
22
+ cd fixtures/ yarn; yarn
20
23
21
24
# When ready, run the same CI commands
22
25
ready :
59
62
cargo test --all-features
60
63
node --run build
61
64
node --run test
62
- cd fixtures/ pnp && yarn test
65
+ cd fixtures/ pnp; yarn test
63
66
64
67
# Lint the whole project
65
68
lint :
@@ -79,7 +82,7 @@ benchmark:
79
82
80
83
# Run cargo-fuzz
81
84
fuzz :
82
- cd fuzz && cargo + nightly fuzz run --sanitizer none resolver -- -only_ascii=1 -max_total_time=900
85
+ cd fuzz; cargo + nightly fuzz run --sanitizer none resolver -- -only_ascii=1 -max_total_time=900
83
86
84
87
# Manual Release
85
88
release :
You can’t perform that action at this time.
0 commit comments