Skip to content

Commit

Permalink
chore: fix update task
Browse files Browse the repository at this point in the history
- Versions only specified in *deno.jsonc*, so change target.
- Version specification with `^` is not updated by *molt*, so remove it.
  • Loading branch information
Milly committed May 29, 2024
1 parent 7d9d89c commit 43318b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@
"test:coverage": "deno task test --coverage=.coverage",
"coverage": "deno coverage .coverage",
"bench": "deno bench -A",
"update": "deno run --allow-env --allow-read --allow-write=. --allow-run=git,deno --allow-net=jsr.io,registry.npmjs.org jsr:@molt/cli ./*.ts",
"update": "deno run --allow-env --allow-read --allow-write=. --allow-run=git,deno --allow-net=jsr.io,registry.npmjs.org jsr:@molt/cli deno.jsonc",
"update:commit": "deno task -q update --commit --pre-commit=fmt,lint"
},
"imports": {
"@std/assert": "jsr:@std/assert@^0.225.1",
"@std/bytes": "jsr:@std/bytes@^0.224.0",
"@std/assert": "jsr:@std/[email protected]",
"@std/bytes": "jsr:@std/[email protected]",
"@lambdalisue/workerio": "./mod.ts"
}
}

0 comments on commit 43318b8

Please sign in to comment.