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 11#!/ usr/ bin/ env -S just --justfile
22
3+ set windows-shell := [" powershell.exe" , " -NoLogo" , " -Command" ]
4+ set shell := [" bash" , " -cu" ]
5+
36_ default :
47 @ just --list -u
58
1417
1518install :
1619 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
2023
2124# When ready, run the same CI commands
2225ready :
5962 cargo test --all-features
6063 node --run build
6164 node --run test
62- cd fixtures/ pnp && yarn test
65+ cd fixtures/ pnp; yarn test
6366
6467# Lint the whole project
6568lint :
@@ -79,7 +82,7 @@ benchmark:
7982
8083# Run cargo-fuzz
8184fuzz :
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
8386
8487# Manual Release
8588release :
You can’t perform that action at this time.
0 commit comments