Skip to content

Commit

Permalink
remove deno --unstable flags
Browse files Browse the repository at this point in the history
  • Loading branch information
dionjwa committed Jan 8, 2025
1 parent 62432d7 commit 671d0f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/worker/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"unstable": ["sloppy-imports"],
"tasks": {
"check": "deno fmt --check && deno lint && deno check **/*.ts && deno check **/*.tsx",
"cli": "echo \"import '\\$fresh/src/dev/cli.ts'\" | deno run --unstable -A -",
"cli": "echo \"import '\\$fresh/src/dev/cli.ts'\" | deno run -A -",
"manifest": "deno task cli manifest $(pwd)",
"start": "deno run -A --watch=static/,routes/ src/dev.ts",
"build": "deno run -A src/dev.ts build",
Expand Down
4 changes: 2 additions & 2 deletions app/worker/justfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ grey := "\\e[90m"
deno task start

open:
deno run --allow-all --unstable https://deno.land/x/metapages@v0.0.27/exec/open_url.ts 'https://metapages.github.io/load-page-when-available/?url=https://{{APP_FQDN}}:{{APP_PORT}}'
deno run --allow-all https://deno.land/x/metapages@v0.0.27/exec/open_url.ts 'https://metapages.github.io/load-page-when-available/?url=https://{{APP_FQDN}}:{{APP_PORT}}'

deploy: _ensure_deployctl
#!/usr/bin/env bash
Expand All @@ -48,7 +48,7 @@ clean:

test: _build_local_module
rm -rf .certs
APP_PORT=8762 deno run -A --unstable --unsafely-ignore-certificate-errors test/src/run-tests-in-astral.ts
APP_PORT=8762 deno run -A --unsafely-ignore-certificate-errors test/src/run-tests-in-astral.ts

build: _build_local_module
deno task build
Expand Down

0 comments on commit 671d0f4

Please sign in to comment.