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 3
3
# Installs a binary distribution of Deno. (The Snapcraft version of Deno seems
4
4
# unable to locate `cargo`.)
5
5
6
- version=1.22.3
6
+ version=1.32.1
7
7
wget https://github.com/denoland/deno/releases/download/v${version} /deno-x86_64-unknown-linux-gnu.zip
8
8
unzip deno-x86_64-unknown-linux-gnu.zip
9
9
chmod +x deno
Original file line number Diff line number Diff line change 3
3
// [Deno]: https://deno.land/
4
4
//
5
5
// 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" ;
10
10
11
11
const parsedArgs = parseFlags ( Deno . args , {
12
12
"alias" : {
Original file line number Diff line number Diff line change 6
6
// [Deno]: https://deno.land/
7
7
//
8
8
// 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" ;
14
14
15
15
const parsedArgs = parseFlags ( Deno . args , {
16
16
"alias" : {
Original file line number Diff line number Diff line change 4
4
// [Deno]: https://deno.land/
5
5
//
6
6
// 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" ;
12
12
import * as semver from "https://deno.land/x/semver@v1.4.0/mod.ts" ;
13
13
14
14
const parsedArgs = parseFlags ( Deno . args , {
Original file line number Diff line number Diff line change 2
2
// program.
3
3
//
4
4
// [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" ;
10
10
import AsciiTable from "https://deno.land/x/ascii_table@v0.1.0/mod.ts" ;
11
- import elfy from "https://esm.sh/ elfy@1.0.0" ;
11
+ import elfy from "npm: elfy@1.0.0" ;
12
12
13
13
const ENV_TEST_NAME = "R3_TEST" ; // should be synched with `r3_test_runner`!
14
14
You can’t perform that action at this time.
0 commit comments