Skip to content

Commit 98ecc37

Browse files
authored
chore(upgrade): deno/[email protected] (#650)
1 parent 5f2c4f8 commit 98ecc37

File tree

16 files changed

+33
-33
lines changed

16 files changed

+33
-33
lines changed

ansi/colors.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as stdColors from "https://deno.land/std@0.192.0/fmt/colors.ts";
1+
import * as stdColors from "https://deno.land/std@0.196.0/fmt/colors.ts";
22

33
type ExcludedColorMethods = "setColorEnabled" | "getColorEnabled";
44
type PropertyNames = keyof typeof stdColors;

ansi/deps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export {
22
encode as encodeBase64,
3-
} from "https://deno.land/std@0.192.0/encoding/base64.ts";
3+
} from "https://deno.land/std@0.196.0/encoding/base64.ts";

command/deps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ export {
1010
red,
1111
setColorEnabled,
1212
yellow,
13-
} from "https://deno.land/std@0.192.0/fmt/colors.ts";
13+
} from "https://deno.land/std@0.196.0/fmt/colors.ts";

dev_deps.ts

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,30 +6,30 @@ export {
66
assertRejects,
77
assertStrictEquals,
88
assertThrows,
9-
} from "https://deno.land/std@0.192.0/testing/asserts.ts";
9+
} from "https://deno.land/std@0.196.0/testing/asserts.ts";
1010
export {
1111
assertSpyCall,
1212
assertSpyCalls,
1313
spy,
14-
} from "https://deno.land/std@0.192.0/testing/mock.ts";
15-
export { assertSnapshot } from "https://deno.land/std@0.192.0/testing/snapshot.ts";
16-
export { describe, it } from "https://deno.land/std@0.192.0/testing/bdd.ts";
14+
} from "https://deno.land/std@0.196.0/testing/mock.ts";
15+
export { assertSnapshot } from "https://deno.land/std@0.196.0/testing/snapshot.ts";
16+
export { describe, it } from "https://deno.land/std@0.196.0/testing/bdd.ts";
1717
export {
1818
assertType,
1919
type IsExact,
20-
} from "https://deno.land/std@0.192.0/testing/types.ts";
20+
} from "https://deno.land/std@0.196.0/testing/types.ts";
2121
export {
2222
bold,
2323
red,
2424
stripColor,
25-
} from "https://deno.land/std@0.192.0/fmt/colors.ts";
26-
export { dirname } from "https://deno.land/std@0.192.0/path/mod.ts";
27-
export { expandGlob } from "https://deno.land/std@0.192.0/fs/expand_glob.ts";
28-
export type { WalkEntry } from "https://deno.land/std@0.192.0/fs/walk.ts";
29-
export { copy } from "https://deno.land/std@0.192.0/streams/copy.ts";
30-
export { format } from "https://deno.land/std@0.192.0/datetime/format.ts";
31-
export { gt } from "https://deno.land/std@0.192.0/semver/gt.ts";
32-
export { lt } from "https://deno.land/std@0.192.0/semver/lt.ts";
25+
} from "https://deno.land/std@0.196.0/fmt/colors.ts";
26+
export { dirname } from "https://deno.land/std@0.196.0/path/mod.ts";
27+
export { expandGlob } from "https://deno.land/std@0.196.0/fs/expand_glob.ts";
28+
export type { WalkEntry } from "https://deno.land/std@0.196.0/fs/walk.ts";
29+
export { copy } from "https://deno.land/std@0.196.0/streams/copy.ts";
30+
export { format } from "https://deno.land/std@0.196.0/datetime/format.ts";
31+
export { gt } from "https://deno.land/std@0.196.0/semver/gt.ts";
32+
export { lt } from "https://deno.land/std@0.196.0/semver/lt.ts";
3333

3434
/* 3rd party */
3535
export { default as sinon } from "https://cdn.skypack.dev/[email protected]?dts";

examples/ansi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env -S deno run
22

33
import { colors, tty } from "../ansi/mod.ts";
4-
import { delay } from "https://deno.land/std@0.192.0/async/delay.ts";
4+
import { delay } from "https://deno.land/std@0.196.0/async/delay.ts";
55

66
const error = colors.bold.red;
77
const warn = colors.bold.yellow;

examples/ansi/custom.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env -S deno run --allow-net=deno.land
22

3-
import { rgb24 } from "https://deno.land/std@0.192.0/fmt/colors.ts";
3+
import { rgb24 } from "https://deno.land/std@0.196.0/fmt/colors.ts";
44
import { tty } from "../../ansi/tty.ts";
55

66
const response = await fetch("https://deno.land/images/hashrock_simple.png");

examples/ansi/demo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env -S deno run
22

3-
import * as stdColors from "https://deno.land/std@0.192.0/fmt/colors.ts";
3+
import * as stdColors from "https://deno.land/std@0.196.0/fmt/colors.ts";
44
import * as ansiEscapes from "../../ansi/ansi_escapes.ts";
55

66
const ansiEscapeNames1: Array<keyof typeof ansiEscapes> = [

examples/command.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env -S deno run --allow-net=localhost:8080,deno.land
22

33
import { Command } from "../command/mod.ts";
4-
import { serve } from "https://deno.land/std@0.192.0/http/server.ts";
4+
import { serve } from "https://deno.land/std@0.196.0/http/server.ts";
55

66
await new Command()
77
.name("reverse-proxy")

examples/command/examples.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env -S deno run
22

3-
import { red } from "https://deno.land/std@0.192.0/fmt/colors.ts";
3+
import { red } from "https://deno.land/std@0.196.0/fmt/colors.ts";
44
import { Command } from "../../command/command.ts";
55

66
await new Command()

examples/prompt/custom_prompts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env -S deno run
22

3-
import { BufReader } from "https://deno.land/std@0.192.0/io/buf_reader.ts";
3+
import { BufReader } from "https://deno.land/std@0.196.0/io/buf_reader.ts";
44
import { tty } from "../../ansi/tty.ts";
55
import { Figures } from "../../prompt/_figures.ts";
66
import { prompt } from "../../prompt/prompt.ts";

0 commit comments

Comments
 (0)