Skip to content

Commit d421f04

Browse files
committed
chore(ci): upgrade Deno standard library
1 parent 928e186 commit d421f04

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

scripts/check-doc.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
// [Deno]: https://deno.land/
44
//
55
// Usage: deno run --allow-read scripts/check-workspace.ts
6-
import { parse as parseFlags } from "https://deno.land/std@0.143.0/flags/mod.ts";
7-
import { walk } from "https://deno.land/std@0.143.0/fs/mod.ts";
8-
import * as path from "https://deno.land/std@0.143.0/path/mod.ts";
9-
import * as log from "https://deno.land/std@0.143.0/log/mod.ts";
6+
import { parse as parseFlags } from "https://deno.land/std@0.181.0/flags/mod.ts";
7+
import { walk } from "https://deno.land/std@0.181.0/fs/mod.ts";
8+
import * as path from "https://deno.land/std@0.181.0/path/mod.ts";
9+
import * as log from "https://deno.land/std@0.181.0/log/mod.ts";
1010

1111
const parsedArgs = parseFlags(Deno.args, {
1212
"alias": {

scripts/check-workspace.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
// [Deno]: https://deno.land/
77
//
88
// Usage: deno run --allow-read scripts/check-workspace.ts
9-
import { parse as parseFlags } from "https://deno.land/std@0.143.0/flags/mod.ts";
10-
import { parse as parseToml } from "https://deno.land/std@0.143.0/encoding/toml.ts";
11-
import * as path from "https://deno.land/std@0.143.0/path/mod.ts";
12-
import * as log from "https://deno.land/std@0.143.0/log/mod.ts";
13-
import { exists } from "https://deno.land/std@0.143.0/fs/exists.ts";
9+
import { parse as parseFlags } from "https://deno.land/std@0.181.0/flags/mod.ts";
10+
import { parse as parseToml } from "https://deno.land/std@0.181.0/encoding/toml.ts";
11+
import * as path from "https://deno.land/std@0.181.0/path/mod.ts";
12+
import * as log from "https://deno.land/std@0.181.0/log/mod.ts";
13+
import { exists } from "https://deno.land/std@0.181.0/fs/exists.ts";
1414

1515
const parsedArgs = parseFlags(Deno.args, {
1616
"alias": {

scripts/externalize-non-local-docs.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
// [Deno]: https://deno.land/
55
//
66
// Usage: deno run -A scripts/externalize-non-local-docs.ts
7-
import { parse as parseFlags } from "https://deno.land/std@0.143.0/flags/mod.ts";
8-
import { parse as parseToml } from "https://deno.land/std@0.143.0/encoding/toml.ts";
9-
import * as path from "https://deno.land/std@0.143.0/path/mod.ts";
10-
import * as log from "https://deno.land/std@0.143.0/log/mod.ts";
11-
import { walk } from "https://deno.land/std@0.143.0/fs/walk.ts";
7+
import { parse as parseFlags } from "https://deno.land/std@0.181.0/flags/mod.ts";
8+
import { parse as parseToml } from "https://deno.land/std@0.181.0/encoding/toml.ts";
9+
import * as path from "https://deno.land/std@0.181.0/path/mod.ts";
10+
import * as log from "https://deno.land/std@0.181.0/log/mod.ts";
11+
import { walk } from "https://deno.land/std@0.181.0/fs/walk.ts";
1212
import * as semver from "https://deno.land/x/semver@v1.4.0/mod.ts";
1313

1414
const parsedArgs = parseFlags(Deno.args, {

scripts/report-size.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
// program.
33
//
44
// [Deno]: https://deno.land/
5-
import { parse as parseFlags } from "https://deno.land/std@0.143.0/flags/mod.ts";
6-
import * as path from "https://deno.land/std@0.143.0/path/mod.ts";
7-
import * as log from "https://deno.land/std@0.143.0/log/mod.ts";
8-
import { BufReader } from "https://deno.land/std@0.143.0/io/bufio.ts";
9-
import { Buffer } from "https://deno.land/std@0.143.0/node/buffer.ts";
5+
import { parse as parseFlags } from "https://deno.land/std@0.181.0/flags/mod.ts";
6+
import * as path from "https://deno.land/std@0.181.0/path/mod.ts";
7+
import * as log from "https://deno.land/std@0.181.0/log/mod.ts";
8+
import { BufReader } from "https://deno.land/std@0.181.0/io/mod.ts";
9+
import { Buffer } from "node:buffer";
1010
import AsciiTable from "https://deno.land/x/ascii_table@v0.1.0/mod.ts";
1111
import elfy from "https://esm.sh/elfy@1.0.0";
1212

0 commit comments

Comments
 (0)