Skip to content

Commit 77717d5

Browse files
committed
Update to deno v1.45.0
Signed-off-by: m4rc3l05 <15786310+M4RC3L05@users.noreply.github.com>
1 parent 60a917f commit 77717d5

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ jobs:
1414
with:
1515
deno-version: 1.X
1616

17+
- name: check lockfile
18+
run: deno task deps:check
19+
1720
- name: check format
1821
run: deno fmt --check
1922

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
deno 1.44.4
1+
deno 1.45.0

deno.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"tasks": {
55
"run": "./.bin/public-to-json.ts && deno run -A --unstable-ffi --cached-only --lock=deno.lock src/main.ts",
66
"compile": "./.bin/public-to-json.ts && deno compile -A --unstable-ffi --include ./src/public.json --cached-only --lock=deno.lock -o ./.bin/denotag ./src/main.ts",
7-
"deps:lock": "deno cache --lock=deno.lock --lock-write src/*.ts src/**/*.ts src/**/*.tsx ./.bin/*.ts",
7+
"deps:check": "deno cache --lock=deno.lock --frozen src/*.ts src/**/*.ts src/**/*.tsx ./.bin/*.ts",
8+
"deps:lock": "deno cache --lock=deno.lock --frozen=false src/*.ts src/**/*.ts src/**/*.tsx ./.bin/*.ts",
89
"deps": "deno cache --reload --lock=deno.lock src/*.ts src/**/*.ts src/**/*.tsx ./.bin/*.ts"
910
},
1011
"compilerOptions": {

0 commit comments

Comments
 (0)