File tree Expand file tree Collapse file tree 5 files changed +21
-21
lines changed Expand file tree Collapse file tree 5 files changed +21
-21
lines changed Original file line number Diff line number Diff line change 33# Installs a binary distribution of Deno. (The Snapcraft version of Deno seems
44# unable to locate `cargo`.)
55
6- version=1.22.3
6+ version=1.32.1
77wget https://github.com/denoland/deno/releases/download/v${version} /deno-x86_64-unknown-linux-gnu.zip
88unzip deno-x86_64-unknown-linux-gnu.zip
99chmod +x deno
Original file line number Diff line number Diff line change 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
1111const parsedArgs = parseFlags ( Deno . args , {
1212 "alias" : {
Original file line number Diff line number Diff line change 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
1515const parsedArgs = parseFlags ( Deno . args , {
1616 "alias" : {
Original file line number Diff line number Diff line change 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" ;
1212import * as semver from "https://deno.land/x/[email protected] /mod.ts" ; 1313
1414const parsedArgs = parseFlags ( Deno . args , {
Original file line number Diff line number Diff line change 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/[email protected] / 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" ;
1010import AsciiTable from "https://deno.land/x/[email protected] /mod.ts" ; 11- import elfy from "https://esm.sh/ [email protected] " ; 11+ import elfy from "npm: [email protected] " ; 1212
1313const ENV_TEST_NAME = "R3_TEST" ; // should be synched with `r3_test_runner`!
1414
You can’t perform that action at this time.
0 commit comments