@@ -39,43 +39,48 @@ import * as textproto from "https://deno.land/std@0.159.0/textproto/mod.ts";
39
39
import * as uuid from "https://deno.land/std@0.159.0/uuid/mod.ts";
40
40
*/
41
41
42
- import * as tar from "https://deno.land/std@0.217.0/archive/tar.ts" ;
43
- import * as async from "https://deno.land/std@0.217.0/async/mod.ts" ;
44
- import * as bytes from "https://deno.land/std@0.217.0/bytes/mod.ts" ;
45
- import * as collections from "https://deno.land/std@0.217.0/collections/mod.ts" ;
46
- import * as crypto from "https://deno.land/std@0.217.0/crypto/mod.ts" ;
47
- import * as datetime from "https://deno.land/std@0.217.0/datetime/mod.ts" ;
48
- import * as dotenv from "https://deno.land/std@0.217.0/dotenv/mod.ts" ;
42
+ // The import map "run_import_map.json" needs to mirror these imports
43
+ // If you edit this file, you need to update the import map as well
44
+
45
+ import * as tar from "jsr:/@std/archive@^0.224.0/tar" ;
46
+ import * as async from "jsr:/@std/async@^0.224.0" ;
47
+ import * as bytes from "jsr:/@std/bytes@^0.224.0" ;
48
+ import * as collections from "jsr:/@std/collections@^0.224.0" ;
49
+ import * as crypto from "jsr:/@std/crypto@^0.224.0" ;
50
+ import * as datetime from "jsr:/@std/datetime@^0.224.0" ;
51
+ import * as dotenv from "jsr:/@std/dotenv@^0.224.0" ;
49
52
50
53
// encoding has no mod.ts
51
- import * as ascii85 from "https://deno.land/std@0.217.0/encoding/ascii85.ts" ;
52
- import * as base32 from "https://deno.land/std@0.217.0/encoding/base32.ts" ;
53
- import * as base58 from "https://deno.land/std@0.217.0/encoding/base58.ts" ;
54
- import * as base64 from "https://deno.land/std@0.217.0/encoding/base64.ts" ;
55
- import * as base64url from "https://deno.land/std@0.217.0/encoding/base64url.ts" ;
56
- import * as csv from "https://deno.land/std@0.217.0/csv/mod.ts" ;
57
- import * as front_matter from "https://deno.land/std@0.217.0/front_matter/mod.ts" ;
58
- import * as hex from "https://deno.land/std@0.217.0/encoding/hex.ts" ;
59
- import * as jsonc from "https://deno.land/std@0.217.0/jsonc/mod.ts" ;
60
- import * as toml from "https://deno.land/std@0.217.0/toml/mod.ts" ;
61
- import * as varint from "https://deno.land/std@0.217.0/encoding/varint.ts" ;
62
- import * as yaml from "https://deno.land/std@0.217.0/yaml/mod.ts" ;
54
+ import * as ascii85 from "https://deno.land/std@0.224.0/encoding/ascii85.ts" ;
55
+ import * as base32 from "https://deno.land/std@0.224.0/encoding/base32.ts" ;
56
+ import * as base58 from "https://deno.land/std@0.224.0/encoding/base58.ts" ;
57
+ import * as base64 from "https://deno.land/std@0.224.0/encoding/base64.ts" ;
58
+ import * as base64url from "https://deno.land/std@0.224.0/encoding/base64url.ts" ;
59
+ import * as csv from "jsr:/@std/csv@^0.224.0" ;
60
+ import * as front_matter from "jsr:/@std/front-matter@^0.224.0" ;
61
+ import * as hex from "https://deno.land/std@0.224.0/encoding/hex.ts" ;
62
+ import * as jsonc from "jsr:/@std/jsonc@^0.224.0" ;
63
+ import * as toml from "jsr:/@std/toml@^0.224.0" ;
64
+ import * as varint from "https://deno.land/std@0.224.0/encoding/varint.ts" ;
65
+ import * as yaml from "jsr:/@std/yaml@^0.224.0" ;
66
+
67
+ import * as flags from "jsr:/@std/flags@^0.224.0" ;
68
+ import * as fmt_bytes from "https://deno.land/std@0.224.0/fmt/bytes.ts" ;
69
+ import * as fmt_colors from "https://deno.land/std@0.224.0/fmt/colors.ts" ;
70
+ import * as fmt_printf from "https://deno.land/std@0.224.0/fmt/printf.ts" ;
71
+ import * as fs from "jsr:/@std/fs@^0.224.0" ;
72
+ import * as http from "jsr:/@std/http@^0.224.0" ;
73
+ import * as io from "jsr:/@std/io@^0.224.0" ;
74
+ import * as log from "jsr:/@std/log@^0.224.0" ;
75
+ import * as mediaTypes from "jsr:/@std/media-types@^0.224.0" ;
76
+ import * as path from "jsr:/@std/path@^0.224.0" ;
77
+ import * as permissions from "jsr:/@std/permissions@^0.224.0" ;
78
+ import * as semver from "jsr:/@std/semver@^0.224.0" ;
79
+ import * as streams from "jsr:/@std/streams@^0.224.0" ;
80
+ import * as uuid from "jsr:/@std/uuid@^0.224.0" ;
63
81
64
- import * as flags from "https://deno.land/std@0.217.0/flags/mod.ts" ;
65
- import * as fmt_bytes from "https://deno.land/std@0.217.0/fmt/bytes.ts" ;
66
- import * as fmt_colors from "https://deno.land/std@0.217.0/fmt/colors.ts" ;
67
- import * as fmt_printf from "https://deno.land/std@0.217.0/fmt/printf.ts" ;
68
- import * as fs from "https://deno.land/std@0.217.0/fs/mod.ts" ;
69
- import * as http from "https://deno.land/std@0.217.0/http/mod.ts" ;
70
- import * as io from "https://deno.land/std@0.217.0/io/mod.ts" ;
71
- import * as log from "https://deno.land/std@0.217.0/log/mod.ts" ;
72
- import * as mediaTypes from "https://deno.land/std@0.217.0/media_types/mod.ts" ;
73
- import * as path from "https://deno.land/std@0.217.0/path/mod.ts" ;
74
- import * as permissions from "https://deno.land/std@0.217.0/permissions/mod.ts" ;
75
- import * as semver from "https://deno.land/std@0.217.0/semver/mod.ts" ;
76
- import * as streams from "https://deno.land/std@0.217.0/streams/mod.ts" ;
77
- import * as uuid from "https://deno.land/std@0.217.0/uuid/mod.ts" ;
78
- import * as version from "https://deno.land/std@0.217.0/version.ts" ;
82
+ // seems like jsr doesn't export version numbers?!
83
+ // import * as version from "jsr:/@std/version@^0.224.0";
79
84
import juice from "https://cdn.skypack.dev/juice@10.0.0" ;
80
85
81
86
/*
@@ -84,58 +89,58 @@ These would be useful imports to add, but they increase the
84
89
size of the download cache significantly, so we're skipping
85
90
them until they are needed.
86
91
87
- import "https://deno.land/std@0.217 .0/node/assert/strict.ts";
88
- import "https://deno.land/std@0.217 .0/node/dns/promises.ts";
89
- import "https://deno.land/std@0.217 .0/node/fs/promises.ts";
90
- import "https://deno.land/std@0.217 .0/node/path/mod.ts";
91
- import "https://deno.land/std@0.217 .0/node/readline/promises.ts";
92
- import "https://deno.land/std@0.217 .0/node/stream/web.ts";
93
- import "https://deno.land/std@0.217 .0/node/timers/promises.ts";
94
- import "https://deno.land/std@0.217 .0/node/util/types.ts";
95
- import "https://deno.land/std@0.217 .0/node/assert.ts";
96
- import "https://deno.land/std@0.217 .0/node/assertion_error.ts";
97
- import "https://deno.land/std@0.217 .0/node/async_hooks.ts";
98
- import "https://deno.land/std@0.217 .0/node/async_hooks.ts";
99
- import "https://deno.land/std@0.217 .0/node/buffer.ts";
100
- import "https://deno.land/std@0.217 .0/node/child_process.ts";
101
- import "https://deno.land/std@0.217 .0/node/cluster.ts";
102
- import "https://deno.land/std@0.217 .0/node/console.ts";
103
- import "https://deno.land/std@0.217 .0/node/constants.ts";
104
- import "https://deno.land/std@0.217 .0/node/crypto.ts";
105
- import "https://deno.land/std@0.217 .0/node/dgram.ts";
106
- import "https://deno.land/std@0.217 .0/node/diagnostics_channel.ts";
107
- import "https://deno.land/std@0.217 .0/node/dns.ts";
108
- import "https://deno.land/std@0.217 .0/node/domain.ts";
109
- import "https://deno.land/std@0.217 .0/node/events.ts";
110
- import "https://deno.land/std@0.217 .0/node/fs.ts";
111
- import "https://deno.land/std@0.217 .0/node/http.ts";
112
- import "https://deno.land/std@0.217 .0/node/http2.ts";
113
- import "https://deno.land/std@0.217 .0/node/https.ts";
114
- import "https://deno.land/std@0.217 .0/node/inspector.ts";
115
- import "https://deno.land/std@0.217 .0/node/module_all.ts";
116
- import "https://deno.land/std@0.217 .0/node/module_esm.ts";
117
- import "https://deno.land/std@0.217 .0/node/module.ts";
118
- import "https://deno.land/std@0.217 .0/node/net.ts";
119
- import "https://deno.land/std@0.217 .0/node/os.ts";
120
- import "https://deno.land/std@0.217 .0/node/path.ts";
121
- import "https://deno.land/std@0.217 .0/node/perf_hooks.ts";
122
- import "https://deno.land/std@0.217 .0/node/process.ts";
123
- import "https://deno.land/std@0.217 .0/node/punycode.ts";
124
- import "https://deno.land/std@0.217 .0/node/querystring.ts";
125
- import "https://deno.land/std@0.217 .0/node/readline.ts";
126
- import "https://deno.land/std@0.217 .0/node/repl.ts";
127
- import "https://deno.land/std@0.217 .0/node/stream.ts";
128
- import "https://deno.land/std@0.217 .0/node/string_decoder.ts";
129
- import "https://deno.land/std@0.217 .0/node/sys.ts";
130
- import "https://deno.land/std@0.217 .0/node/timers.ts";
131
- import "https://deno.land/std@0.217 .0/node/tls.ts";
132
- import "https://deno.land/std@0.217 .0/node/tty.ts";
133
- import "https://deno.land/std@0.217 .0/node/upstream_modules.ts";
134
- import "https://deno.land/std@0.217 .0/node/url.ts";
135
- import "https://deno.land/std@0.217 .0/node/util.ts";
136
- import "https://deno.land/std@0.217 .0/node/v8.ts";
137
- import "https://deno.land/std@0.217 .0/node/vm.ts";
138
- import "https://deno.land/std@0.217 .0/node/wasi.ts";
139
- import "https://deno.land/std@0.217 .0/node/worker_threads.ts";
140
- import "https://deno.land/std@0.217 .0/node/zlib.ts";
92
+ import "https://deno.land/std@0.224 .0/node/assert/strict.ts";
93
+ import "https://deno.land/std@0.224 .0/node/dns/promises.ts";
94
+ import "https://deno.land/std@0.224 .0/node/fs/promises.ts";
95
+ import "https://deno.land/std@0.224 .0/node/path/mod.ts";
96
+ import "https://deno.land/std@0.224 .0/node/readline/promises.ts";
97
+ import "https://deno.land/std@0.224 .0/node/stream/web.ts";
98
+ import "https://deno.land/std@0.224 .0/node/timers/promises.ts";
99
+ import "https://deno.land/std@0.224 .0/node/util/types.ts";
100
+ import "https://deno.land/std@0.224 .0/node/assert.ts";
101
+ import "https://deno.land/std@0.224 .0/node/assertion_error.ts";
102
+ import "https://deno.land/std@0.224 .0/node/async_hooks.ts";
103
+ import "https://deno.land/std@0.224 .0/node/async_hooks.ts";
104
+ import "https://deno.land/std@0.224 .0/node/buffer.ts";
105
+ import "https://deno.land/std@0.224 .0/node/child_process.ts";
106
+ import "https://deno.land/std@0.224 .0/node/cluster.ts";
107
+ import "https://deno.land/std@0.224 .0/node/console.ts";
108
+ import "https://deno.land/std@0.224 .0/node/constants.ts";
109
+ import "https://deno.land/std@0.224 .0/node/crypto.ts";
110
+ import "https://deno.land/std@0.224 .0/node/dgram.ts";
111
+ import "https://deno.land/std@0.224 .0/node/diagnostics_channel.ts";
112
+ import "https://deno.land/std@0.224 .0/node/dns.ts";
113
+ import "https://deno.land/std@0.224 .0/node/domain.ts";
114
+ import "https://deno.land/std@0.224 .0/node/events.ts";
115
+ import "https://deno.land/std@0.224 .0/node/fs.ts";
116
+ import "https://deno.land/std@0.224 .0/node/http.ts";
117
+ import "https://deno.land/std@0.224 .0/node/http2.ts";
118
+ import "https://deno.land/std@0.224 .0/node/https.ts";
119
+ import "https://deno.land/std@0.224 .0/node/inspector.ts";
120
+ import "https://deno.land/std@0.224 .0/node/module_all.ts";
121
+ import "https://deno.land/std@0.224 .0/node/module_esm.ts";
122
+ import "https://deno.land/std@0.224 .0/node/module.ts";
123
+ import "https://deno.land/std@0.224 .0/node/net.ts";
124
+ import "https://deno.land/std@0.224 .0/node/os.ts";
125
+ import "https://deno.land/std@0.224 .0/node/path.ts";
126
+ import "https://deno.land/std@0.224 .0/node/perf_hooks.ts";
127
+ import "https://deno.land/std@0.224 .0/node/process.ts";
128
+ import "https://deno.land/std@0.224 .0/node/punycode.ts";
129
+ import "https://deno.land/std@0.224 .0/node/querystring.ts";
130
+ import "https://deno.land/std@0.224 .0/node/readline.ts";
131
+ import "https://deno.land/std@0.224 .0/node/repl.ts";
132
+ import "https://deno.land/std@0.224 .0/node/stream.ts";
133
+ import "https://deno.land/std@0.224 .0/node/string_decoder.ts";
134
+ import "https://deno.land/std@0.224 .0/node/sys.ts";
135
+ import "https://deno.land/std@0.224 .0/node/timers.ts";
136
+ import "https://deno.land/std@0.224 .0/node/tls.ts";
137
+ import "https://deno.land/std@0.224 .0/node/tty.ts";
138
+ import "https://deno.land/std@0.224 .0/node/upstream_modules.ts";
139
+ import "https://deno.land/std@0.224 .0/node/url.ts";
140
+ import "https://deno.land/std@0.224 .0/node/util.ts";
141
+ import "https://deno.land/std@0.224 .0/node/v8.ts";
142
+ import "https://deno.land/std@0.224 .0/node/vm.ts";
143
+ import "https://deno.land/std@0.224 .0/node/wasi.ts";
144
+ import "https://deno.land/std@0.224 .0/node/worker_threads.ts";
145
+ import "https://deno.land/std@0.224 .0/node/zlib.ts";
141
146
*/
0 commit comments