-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscripts.yaml
15 lines (15 loc) · 1.03 KB
/
scripts.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
scripts:
start: deno run --allow-net --allow-read --allow-env spit.ts
compile:
- rm -r ./dist
- mkdir -p ./dist
- pll:
- deno compile --unstable --allow-net --allow-read --allow-env --output=./dist/spit spit.ts
- deno compile --unstable --allow-net --allow-read --allow-env --target=aarch64-apple-darwin --output=./dist/spit-aarch64-apple-darwin-$(cat ./VERSION) spit.ts
- deno compile --unstable --allow-net --allow-read --allow-env --target=x86_64-apple-darwin --output=./dist/spit-x86_64-apple-darwin-$(cat ./VERSION) spit.ts
- deno compile --unstable --allow-net --allow-read --allow-env --target=x86_64-pc-windows-msvc --output=./dist/spit-x86_64-pc-windows-msvc-$(cat ./VERSION) spit.ts
- deno compile --unstable --allow-net --allow-read --allow-env --target=x86_64-unknown-linux-gnu --output=./dist/spit-x86_64-unknown-linux-gnu-$(cat ./VERSION) spit.ts
- pll:
- ./dist/spit --help
- ./dist/spit check --help
install: deno install --allow-net --allow-read --allow-env -f spit.ts