Skip to content

Commit

Permalink
chore: update vercel deno version
Browse files Browse the repository at this point in the history
  • Loading branch information
lowlighter committed Nov 29, 2024
1 parent 6866b20 commit 0432ab3
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion api/bundle/css/bundle.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env DENO_DIR=/tmp deno run --version=v2.0.6
#!/usr/bin/env DENO_DIR=/tmp deno run --version=v2.1.2
import { bundle } from "@libs/bundle/css"
import { STATUS_CODE, STATUS_TEXT } from "@std/http/status"

Expand Down
2 changes: 1 addition & 1 deletion api/bundle/css/compatibility.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env DENO_DIR=/tmp deno run --version=v2.0.6
#!/usr/bin/env DENO_DIR=/tmp deno run --version=v2.1.2
import { compatibility } from "@libs/bundle/css"
import { STATUS_CODE, STATUS_TEXT } from "@std/http/status"

Expand Down
2 changes: 1 addition & 1 deletion api/bundle/ts/bundle.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env DENO_DIR=/tmp deno run --version=v2.0.6
#!/usr/bin/env DENO_DIR=/tmp deno run --version=v2.1.2
import { bundle } from "@libs/bundle/ts"
import { STATUS_CODE, STATUS_TEXT } from "@std/http/status"

Expand Down
2 changes: 1 addition & 1 deletion api/crypto/totp/get.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env DENO_DIR=/tmp deno run --version=v2.0.6
#!/usr/bin/env DENO_DIR=/tmp deno run --version=v2.1.2
import { totp } from "@libs/crypto/totp"
import { STATUS_CODE, STATUS_TEXT } from "@std/http/status"

Expand Down
2 changes: 1 addition & 1 deletion api/crypto/totp/qrcode.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env DENO_DIR=/tmp deno run --version=v2.0.6
#!/usr/bin/env DENO_DIR=/tmp deno run --version=v2.1.2
import { qrcode } from "@libs/qrcode"
import { otpauth } from "@libs/crypto/totp"
import { STATUS_CODE, STATUS_TEXT } from "@std/http/status"
Expand Down
2 changes: 1 addition & 1 deletion api/crypto/totp/secret.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env DENO_DIR=/tmp deno run --version=v2.0.6
#!/usr/bin/env DENO_DIR=/tmp deno run --version=v2.1.2
import { otpsecret } from "@libs/crypto/totp"
import { STATUS_CODE, STATUS_TEXT } from "@std/http/status"

Expand Down
2 changes: 1 addition & 1 deletion api/crypto/totp/verify.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env DENO_DIR=/tmp deno run --version=v2.0.6
#!/usr/bin/env DENO_DIR=/tmp deno run --version=v2.1.2
import { verify } from "@libs/crypto/totp"
import { STATUS_CODE, STATUS_TEXT } from "@std/http/status"

Expand Down
2 changes: 1 addition & 1 deletion api/deno/run.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env DENO_DIR=/tmp deno run --version=v2.0.6
#!/usr/bin/env DENO_DIR=/tmp deno run --version=v2.1.2
import { STATUS_CODE, STATUS_TEXT } from "@std/http/status"

/** Maximum runtime execution */
Expand Down
2 changes: 1 addition & 1 deletion api/diff/diff.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env DENO_DIR=/tmp deno run --version=v2.0.6
#!/usr/bin/env DENO_DIR=/tmp deno run --version=v2.1.2
import { diff } from "@libs/diff/diff"
import { STATUS_CODE, STATUS_TEXT } from "@std/http/status"

Expand Down
2 changes: 1 addition & 1 deletion api/qrcode/get.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env DENO_DIR=/tmp deno run --version=v2.0.6
#!/usr/bin/env DENO_DIR=/tmp deno run --version=v2.1.2
import { qrcode } from "@libs/qrcode"
import { STATUS_CODE, STATUS_TEXT } from "@std/http/status"

Expand Down
2 changes: 1 addition & 1 deletion api/xml/parse.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env DENO_DIR=/tmp deno run --version=v2.0.6
#!/usr/bin/env DENO_DIR=/tmp deno run --version=v2.1.2
import * as XML from "@libs/xml/parse"
import { STATUS_CODE, STATUS_TEXT } from "@std/http"

Expand Down
2 changes: 1 addition & 1 deletion api/xml/stringify.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env DENO_DIR=/tmp deno run --version=v2.0.6
#!/usr/bin/env DENO_DIR=/tmp deno run --version=v2.1.2
import * as XML from "@libs/xml/stringify"
import { STATUS_CODE, STATUS_TEXT } from "@std/http/status"

Expand Down

0 comments on commit 0432ab3

Please sign in to comment.