Skip to content
This repository has been archived by the owner on Jun 27, 2024. It is now read-only.

Commit

Permalink
refactor: update deps (#206)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] committed Sep 5, 2023
1 parent 64f66f6 commit 0fa18ad
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/update_license_year.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { walk } from 'https://deno.land/std@0.200.0/fs/walk.ts'
import { walk } from 'https://deno.land/std@0.201.0/fs/walk.ts'

for await (const entry of walk(Deno.cwd(), { exts: ['ts', 'tsx'] })) {
if (!entry.isFile) {
Expand Down
4 changes: 2 additions & 2 deletions cli/cmd/bundle/mod.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// Copyright 2023 Samuel Kopp. All rights reserved. Apache-2.0 license.
import { parse } from 'https://deno.land/std@0.200.0/flags/mod.ts'
import { parse } from 'https://deno.land/std@0.201.0/flags/mod.ts'
import {
brightGreen,
brightRed,
brightYellow,
gray,
} from 'https://deno.land/std@0.200.0/fmt/colors.ts'
} from 'https://deno.land/std@0.201.0/fmt/colors.ts'
import byte from 'https://deno.land/x/byte@v3.3.0/byte.ts'
import { logError } from '../../utils.ts'
import { bundle } from './bundle.ts'
Expand Down
2 changes: 1 addition & 1 deletion cli/cmd/new/mod.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2023 Samuel Kopp. All rights reserved. Apache-2.0 license.
import { ensureFile } from 'https://deno.land/std@0.200.0/fs/ensure_file.ts'
import { ensureFile } from 'https://deno.land/std@0.201.0/fs/ensure_file.ts'
import { Select } from 'cliffy'

type VSCodeSettings = {
Expand Down
6 changes: 3 additions & 3 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@
"djwt": "https://deno.land/x/djwt@v2.8/mod.ts",
"dom": "https://deno.land/x/deno_dom@v0.1.38/deno-dom-wasm.ts",
"esbuild": "https://deno.land/x/esbuild@v0.19.2/mod.js",
"foras": "https://deno.land/x/foras@2.0.8/src/deno/mod.ts",
"foras": "https://deno.land/x/foras@v2.1.0/src/deno/mod.ts",
"otpauth": "https://deno.land/x/otpauth@v9.1.4/dist/otpauth.esm.js",
"preact": "https://esm.sh/preact@10.17.1?target=es2022",
"preact/render-to-string": "https://esm.sh/preact-render-to-string@6.1.0?deps=preact@10.17.1&target=es2022",
"std/": "https://deno.land/std@0.200.0/",
"std/": "https://deno.land/std@0.201.0/",
"twind": "https://esm.sh/@twind/core@1.1.3",
"twind/preset-autoprefix": "https://esm.sh/@twind/preset-autoprefix@1.0.7",
"twind/preset-tailwind": "https://esm.sh/@twind/preset-tailwind@1.1.4",
"worker": "https://cdn.jsdelivr.net/npm/@cloudflare/workers-types@4.20230821.0/index.ts",
"worker": "https://cdn.jsdelivr.net/npm/@cloudflare/workers-types@4.20230904.0/index.ts",
"upstash": "https://deno.land/x/upstash_redis@v1.22.0/mod.ts",
"zod": "https://deno.land/x/zod@v3.21.4/mod.ts"
},
Expand Down

0 comments on commit 0fa18ad

Please sign in to comment.