Skip to content

Commit 0c2262e

Browse files
committed
bump deps
1 parent 78e741a commit 0c2262e

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/deno-to-node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ await build({
4141
},
4242
importMap: "deno.json",
4343
mappings: {
44-
"https://deno.land/x/is_what@v4.1.13/src/index.ts": "is-what",
44+
"https://deno.land/x/is_what@v4.1.15/src/index.ts": "is-what",
4545
"https://deno.land/x/outdent@v0.8.0/mod.ts": "outdent",
4646
"./src/utils/flock.deno.ts": "./src/utils/flock.node.ts"
4747
},

deno.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"exclude": ["dist/"]
2929
},
3030
"imports": {
31-
"is-what": "https://deno.land/x/is_what@v4.1.8/src/index.ts",
32-
"deno/": "https://deno.land/std@0.189.0/"
31+
"is-what": "https://deno.land/x/is_what@v4.1.15/src/index.ts",
32+
"deno/": "https://deno.land/std@0.191.0/"
3333
}
3434
}

src/deps.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
import * as is_what from "https://deno.land/x/is_what@v4.1.13/src/index.ts"
1+
import * as is_what from "https://deno.land/x/is_what@v4.1.15/src/index.ts"
22
export { is_what }
33

4-
import { type PlainObject } from "https://deno.land/x/is_what@v4.1.13/src/index.ts"
4+
import { type PlainObject } from "https://deno.land/x/is_what@v4.1.15/src/index.ts"
55
export type { PlainObject }
66

77
import * as outdent from "https://deno.land/x/outdent@v0.8.0/mod.ts"
88
export { outdent }
99

1010
// importing super specifically to reduce final npm bundle size
11-
import * as crypto from "https://deno.land/std@0.190.0/crypto/mod.ts"
12-
import { moveSync } from "https://deno.land/std@0.190.0/fs/move.ts"
13-
import { readLines } from "https://deno.land/std@0.190.0/io/read_lines.ts"
14-
import { writeAll } from "https://deno.land/std@0.190.0/streams/write_all.ts"
15-
import { parse as parseYaml } from "https://deno.land/std@0.190.0/yaml/parse.ts"
11+
import * as crypto from "https://deno.land/std@0.191.0/crypto/mod.ts"
12+
import { moveSync } from "https://deno.land/std@0.191.0/fs/move.ts"
13+
import { readLines } from "https://deno.land/std@0.191.0/io/read_lines.ts"
14+
import { writeAll } from "https://deno.land/std@0.191.0/streams/write_all.ts"
15+
import { parse as parseYaml } from "https://deno.land/std@0.191.0/yaml/parse.ts"
1616

1717
const streams = { writeAll }
1818
const io = { readLines }

0 commit comments

Comments
 (0)