move scripts around
This commit is contained in:
parent
e0680f06b2
commit
71ae88f152
1 changed files with 14 additions and 8 deletions
22
scripts.yml
22
scripts.yml
|
@ -2,26 +2,32 @@ scripts:
|
|||
dev:
|
||||
desc: Run Dreamland in Dev Mode
|
||||
cmd: deno run -A https://deno.land/x/denon/denon.ts run -A --unstable ./src/index.ts
|
||||
routes:
|
||||
desc: Generate the Routes used for the Project
|
||||
cmd: deno run --unstable --allow-write --allow-read --no-check --no-prompt --allow-env ./scripts/routes.ts
|
||||
|
||||
cache:
|
||||
desc: Cache all Dependencies
|
||||
cmd: deno cache --unstable ./src/index.ts
|
||||
cmd: deno cache --unstable --reload ./deps.ts
|
||||
|
||||
start:
|
||||
desc: Start Dreamland in Prod Mode
|
||||
cmd:
|
||||
- vr gen
|
||||
- deno run -A --unstable ./src/index.ts
|
||||
|
||||
funny:
|
||||
desc: Send a Request to IPv4.party because it's funny
|
||||
cmd: deno run --unstable --allow-net --no-check --no-prompt ./scripts/ipv4.ts
|
||||
s3:
|
||||
desc: Test S3 Module
|
||||
cmd: deno run --unstable -A --no-check --no-prompt ./scripts/s3.ts
|
||||
|
||||
generate: vr gen
|
||||
gen:
|
||||
desc: Run all the Commands that Generate Files
|
||||
cmd:
|
||||
- vr s3
|
||||
- vr routes
|
||||
generate: vr gen
|
||||
|
||||
routes:
|
||||
desc: Generate the Routes used for the Project
|
||||
cmd: deno run --unstable --allow-write --allow-read --no-check --no-prompt --allow-env ./scripts/routes.ts
|
||||
|
||||
s3:
|
||||
desc: Test S3 Module
|
||||
cmd: deno run --unstable -A --no-check --no-prompt ./scripts/s3.ts
|
||||
|
|
Loading…
Add table
Reference in a new issue