Skip to content

Commit 7b0b0fc

Browse files
committed
bump deps
1 parent a682e24 commit 7b0b0fc

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/deno-to-node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies:
1313
npmjs.com: '*'
1414
---*/
1515

16-
import { build, emptyDir } from "https://deno.land/x/dnt@0.37.0/mod.ts";
16+
import { build, emptyDir } from "https://deno.land/x/dnt@0.38.0/mod.ts";
1717
import SemVer from "../src/utils/semver.ts";
1818

1919
await emptyDir("./dist");

deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@
2929
},
3030
"imports": {
3131
"is-what": "https://deno.land/x/is_what@v4.1.15/src/index.ts",
32-
"deno/": "https://deno.land/std@0.193.0/"
32+
"deno/": "https://deno.land/std@0.196.0/"
3333
}
3434
}

src/deps.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ 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.193.0/crypto/mod.ts"
12-
import { moveSync } from "https://deno.land/std@0.193.0/fs/move.ts"
13-
import { readLines } from "https://deno.land/std@0.193.0/io/read_lines.ts"
14-
import { writeAll } from "https://deno.land/std@0.193.0/streams/write_all.ts"
15-
import { parse as parseYaml } from "https://deno.land/std@0.193.0/yaml/parse.ts"
11+
import * as crypto from "https://deno.land/std@0.196.0/crypto/mod.ts"
12+
import { moveSync } from "https://deno.land/std@0.196.0/fs/move.ts"
13+
import { readLines } from "https://deno.land/std@0.196.0/io/read_lines.ts"
14+
import { writeAll } from "https://deno.land/std@0.196.0/streams/write_all.ts"
15+
import { parse as parseYaml } from "https://deno.land/std@0.196.0/yaml/parse.ts"
1616

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

0 commit comments

Comments
 (0)