-
Notifications
You must be signed in to change notification settings - Fork 322
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8907 from quarto-dev/chore/1.5-dependency-refresh
chore: deno upgrade
- Loading branch information
Showing
969 changed files
with
25,594 additions
and
16,750 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,104 +39,102 @@ import * as textproto from "https://deno.land/[email protected]/textproto/mod.ts"; | |
import * as uuid from "https://deno.land/[email protected]/uuid/mod.ts"; | ||
*/ | ||
|
||
import * as tar from "https://deno.land/std@0.204.0/archive/tar.ts"; | ||
import * as async from "https://deno.land/std@0.204.0/async/mod.ts"; | ||
import * as bytes from "https://deno.land/std@0.204.0/bytes/mod.ts"; | ||
import * as collections from "https://deno.land/std@0.204.0/collections/mod.ts"; | ||
import * as crypto from "https://deno.land/std@0.204.0/crypto/mod.ts"; | ||
import * as datetime from "https://deno.land/std@0.204.0/datetime/mod.ts"; | ||
import * as dotenv from "https://deno.land/std@0.204.0/dotenv/mod.ts"; | ||
import * as tar from "https://deno.land/std@0.217.0/archive/tar.ts"; | ||
import * as async from "https://deno.land/std@0.217.0/async/mod.ts"; | ||
import * as bytes from "https://deno.land/std@0.217.0/bytes/mod.ts"; | ||
import * as collections from "https://deno.land/std@0.217.0/collections/mod.ts"; | ||
import * as crypto from "https://deno.land/std@0.217.0/crypto/mod.ts"; | ||
import * as datetime from "https://deno.land/std@0.217.0/datetime/mod.ts"; | ||
import * as dotenv from "https://deno.land/std@0.217.0/dotenv/mod.ts"; | ||
|
||
// encoding has no mod.ts | ||
import * as ascii85 from "https://deno.land/[email protected]/encoding/ascii85.ts"; | ||
import * as base32 from "https://deno.land/[email protected]/encoding/base32.ts"; | ||
import * as base58 from "https://deno.land/[email protected]/encoding/base58.ts"; | ||
import * as base64 from "https://deno.land/[email protected]/encoding/base64.ts"; | ||
import * as base64url from "https://deno.land/[email protected]/encoding/base64url.ts"; | ||
import * as binary from "https://deno.land/[email protected]/encoding/binary.ts"; | ||
import * as csv from "https://deno.land/[email protected]/csv/mod.ts"; | ||
import * as front_matter from "https://deno.land/[email protected]/front_matter/mod.ts"; | ||
import * as hex from "https://deno.land/[email protected]/encoding/hex.ts"; | ||
import * as jsonc from "https://deno.land/[email protected]/jsonc/mod.ts"; | ||
import * as toml from "https://deno.land/[email protected]/toml/mod.ts"; | ||
import * as varint from "https://deno.land/[email protected]/encoding/varint.ts"; | ||
import * as yaml from "https://deno.land/[email protected]/yaml/mod.ts"; | ||
import * as ascii85 from "https://deno.land/[email protected]/encoding/ascii85.ts"; | ||
import * as base32 from "https://deno.land/[email protected]/encoding/base32.ts"; | ||
import * as base58 from "https://deno.land/[email protected]/encoding/base58.ts"; | ||
import * as base64 from "https://deno.land/[email protected]/encoding/base64.ts"; | ||
import * as base64url from "https://deno.land/[email protected]/encoding/base64url.ts"; | ||
import * as csv from "https://deno.land/[email protected]/csv/mod.ts"; | ||
import * as front_matter from "https://deno.land/[email protected]/front_matter/mod.ts"; | ||
import * as hex from "https://deno.land/[email protected]/encoding/hex.ts"; | ||
import * as jsonc from "https://deno.land/[email protected]/jsonc/mod.ts"; | ||
import * as toml from "https://deno.land/[email protected]/toml/mod.ts"; | ||
import * as varint from "https://deno.land/[email protected]/encoding/varint.ts"; | ||
import * as yaml from "https://deno.land/[email protected]/yaml/mod.ts"; | ||
|
||
import * as flags from "https://deno.land/[email protected]/flags/mod.ts"; | ||
import * as fmt_bytes from "https://deno.land/[email protected]/fmt/bytes.ts"; | ||
import * as fmt_colors from "https://deno.land/[email protected]/fmt/colors.ts"; | ||
import * as fmt_printf from "https://deno.land/[email protected]/fmt/printf.ts"; | ||
import * as fs from "https://deno.land/[email protected]/fs/mod.ts"; | ||
import * as http from "https://deno.land/[email protected]/http/mod.ts"; | ||
import * as io from "https://deno.land/[email protected]/io/mod.ts"; | ||
import * as log from "https://deno.land/[email protected]/log/mod.ts"; | ||
import * as mediaTypes from "https://deno.land/[email protected]/media_types/mod.ts"; | ||
import * as path from "https://deno.land/[email protected]/path/mod.ts"; | ||
import * as permissions from "https://deno.land/[email protected]/permissions/mod.ts"; | ||
import * as semver from "https://deno.land/[email protected]/semver/mod.ts"; | ||
import * as signal from "https://deno.land/[email protected]/signal/mod.ts"; | ||
import * as streams from "https://deno.land/[email protected]/streams/mod.ts"; | ||
import * as uuid from "https://deno.land/[email protected]/uuid/mod.ts"; | ||
import * as version from "https://deno.land/[email protected]/version.ts"; | ||
import * as flags from "https://deno.land/[email protected]/flags/mod.ts"; | ||
import * as fmt_bytes from "https://deno.land/[email protected]/fmt/bytes.ts"; | ||
import * as fmt_colors from "https://deno.land/[email protected]/fmt/colors.ts"; | ||
import * as fmt_printf from "https://deno.land/[email protected]/fmt/printf.ts"; | ||
import * as fs from "https://deno.land/[email protected]/fs/mod.ts"; | ||
import * as http from "https://deno.land/[email protected]/http/mod.ts"; | ||
import * as io from "https://deno.land/[email protected]/io/mod.ts"; | ||
import * as log from "https://deno.land/[email protected]/log/mod.ts"; | ||
import * as mediaTypes from "https://deno.land/[email protected]/media_types/mod.ts"; | ||
import * as path from "https://deno.land/[email protected]/path/mod.ts"; | ||
import * as permissions from "https://deno.land/[email protected]/permissions/mod.ts"; | ||
import * as semver from "https://deno.land/[email protected]/semver/mod.ts"; | ||
import * as streams from "https://deno.land/[email protected]/streams/mod.ts"; | ||
import * as uuid from "https://deno.land/[email protected]/uuid/mod.ts"; | ||
import * as version from "https://deno.land/[email protected]/version.ts"; | ||
|
||
/* | ||
These would be useful imports to add, but they increase the | ||
size of the download cache significantly, so we're skipping | ||
them until they are needed. | ||
import "https://deno.land/std@0.204.0/node/assert/strict.ts"; | ||
import "https://deno.land/std@0.204.0/node/dns/promises.ts"; | ||
import "https://deno.land/std@0.204.0/node/fs/promises.ts"; | ||
import "https://deno.land/std@0.204.0/node/path/mod.ts"; | ||
import "https://deno.land/std@0.204.0/node/readline/promises.ts"; | ||
import "https://deno.land/std@0.204.0/node/stream/web.ts"; | ||
import "https://deno.land/std@0.204.0/node/timers/promises.ts"; | ||
import "https://deno.land/std@0.204.0/node/util/types.ts"; | ||
import "https://deno.land/std@0.204.0/node/assert.ts"; | ||
import "https://deno.land/std@0.204.0/node/assertion_error.ts"; | ||
import "https://deno.land/std@0.204.0/node/async_hooks.ts"; | ||
import "https://deno.land/std@0.204.0/node/async_hooks.ts"; | ||
import "https://deno.land/std@0.204.0/node/buffer.ts"; | ||
import "https://deno.land/std@0.204.0/node/child_process.ts"; | ||
import "https://deno.land/std@0.204.0/node/cluster.ts"; | ||
import "https://deno.land/std@0.204.0/node/console.ts"; | ||
import "https://deno.land/std@0.204.0/node/constants.ts"; | ||
import "https://deno.land/std@0.204.0/node/crypto.ts"; | ||
import "https://deno.land/std@0.204.0/node/dgram.ts"; | ||
import "https://deno.land/std@0.204.0/node/diagnostics_channel.ts"; | ||
import "https://deno.land/std@0.204.0/node/dns.ts"; | ||
import "https://deno.land/std@0.204.0/node/domain.ts"; | ||
import "https://deno.land/std@0.204.0/node/events.ts"; | ||
import "https://deno.land/std@0.204.0/node/fs.ts"; | ||
import "https://deno.land/std@0.204.0/node/http.ts"; | ||
import "https://deno.land/std@0.204.0/node/http2.ts"; | ||
import "https://deno.land/std@0.204.0/node/https.ts"; | ||
import "https://deno.land/std@0.204.0/node/inspector.ts"; | ||
import "https://deno.land/std@0.204.0/node/module_all.ts"; | ||
import "https://deno.land/std@0.204.0/node/module_esm.ts"; | ||
import "https://deno.land/std@0.204.0/node/module.ts"; | ||
import "https://deno.land/std@0.204.0/node/net.ts"; | ||
import "https://deno.land/std@0.204.0/node/os.ts"; | ||
import "https://deno.land/std@0.204.0/node/path.ts"; | ||
import "https://deno.land/std@0.204.0/node/perf_hooks.ts"; | ||
import "https://deno.land/std@0.204.0/node/process.ts"; | ||
import "https://deno.land/std@0.204.0/node/punycode.ts"; | ||
import "https://deno.land/std@0.204.0/node/querystring.ts"; | ||
import "https://deno.land/std@0.204.0/node/readline.ts"; | ||
import "https://deno.land/std@0.204.0/node/repl.ts"; | ||
import "https://deno.land/std@0.204.0/node/stream.ts"; | ||
import "https://deno.land/std@0.204.0/node/string_decoder.ts"; | ||
import "https://deno.land/std@0.204.0/node/sys.ts"; | ||
import "https://deno.land/std@0.204.0/node/timers.ts"; | ||
import "https://deno.land/std@0.204.0/node/tls.ts"; | ||
import "https://deno.land/std@0.204.0/node/tty.ts"; | ||
import "https://deno.land/std@0.204.0/node/upstream_modules.ts"; | ||
import "https://deno.land/std@0.204.0/node/url.ts"; | ||
import "https://deno.land/std@0.204.0/node/util.ts"; | ||
import "https://deno.land/std@0.204.0/node/v8.ts"; | ||
import "https://deno.land/std@0.204.0/node/vm.ts"; | ||
import "https://deno.land/std@0.204.0/node/wasi.ts"; | ||
import "https://deno.land/std@0.204.0/node/worker_threads.ts"; | ||
import "https://deno.land/std@0.204.0/node/zlib.ts"; | ||
import "https://deno.land/std@0.217.0/node/assert/strict.ts"; | ||
import "https://deno.land/std@0.217.0/node/dns/promises.ts"; | ||
import "https://deno.land/std@0.217.0/node/fs/promises.ts"; | ||
import "https://deno.land/std@0.217.0/node/path/mod.ts"; | ||
import "https://deno.land/std@0.217.0/node/readline/promises.ts"; | ||
import "https://deno.land/std@0.217.0/node/stream/web.ts"; | ||
import "https://deno.land/std@0.217.0/node/timers/promises.ts"; | ||
import "https://deno.land/std@0.217.0/node/util/types.ts"; | ||
import "https://deno.land/std@0.217.0/node/assert.ts"; | ||
import "https://deno.land/std@0.217.0/node/assertion_error.ts"; | ||
import "https://deno.land/std@0.217.0/node/async_hooks.ts"; | ||
import "https://deno.land/std@0.217.0/node/async_hooks.ts"; | ||
import "https://deno.land/std@0.217.0/node/buffer.ts"; | ||
import "https://deno.land/std@0.217.0/node/child_process.ts"; | ||
import "https://deno.land/std@0.217.0/node/cluster.ts"; | ||
import "https://deno.land/std@0.217.0/node/console.ts"; | ||
import "https://deno.land/std@0.217.0/node/constants.ts"; | ||
import "https://deno.land/std@0.217.0/node/crypto.ts"; | ||
import "https://deno.land/std@0.217.0/node/dgram.ts"; | ||
import "https://deno.land/std@0.217.0/node/diagnostics_channel.ts"; | ||
import "https://deno.land/std@0.217.0/node/dns.ts"; | ||
import "https://deno.land/std@0.217.0/node/domain.ts"; | ||
import "https://deno.land/std@0.217.0/node/events.ts"; | ||
import "https://deno.land/std@0.217.0/node/fs.ts"; | ||
import "https://deno.land/std@0.217.0/node/http.ts"; | ||
import "https://deno.land/std@0.217.0/node/http2.ts"; | ||
import "https://deno.land/std@0.217.0/node/https.ts"; | ||
import "https://deno.land/std@0.217.0/node/inspector.ts"; | ||
import "https://deno.land/std@0.217.0/node/module_all.ts"; | ||
import "https://deno.land/std@0.217.0/node/module_esm.ts"; | ||
import "https://deno.land/std@0.217.0/node/module.ts"; | ||
import "https://deno.land/std@0.217.0/node/net.ts"; | ||
import "https://deno.land/std@0.217.0/node/os.ts"; | ||
import "https://deno.land/std@0.217.0/node/path.ts"; | ||
import "https://deno.land/std@0.217.0/node/perf_hooks.ts"; | ||
import "https://deno.land/std@0.217.0/node/process.ts"; | ||
import "https://deno.land/std@0.217.0/node/punycode.ts"; | ||
import "https://deno.land/std@0.217.0/node/querystring.ts"; | ||
import "https://deno.land/std@0.217.0/node/readline.ts"; | ||
import "https://deno.land/std@0.217.0/node/repl.ts"; | ||
import "https://deno.land/std@0.217.0/node/stream.ts"; | ||
import "https://deno.land/std@0.217.0/node/string_decoder.ts"; | ||
import "https://deno.land/std@0.217.0/node/sys.ts"; | ||
import "https://deno.land/std@0.217.0/node/timers.ts"; | ||
import "https://deno.land/std@0.217.0/node/tls.ts"; | ||
import "https://deno.land/std@0.217.0/node/tty.ts"; | ||
import "https://deno.land/std@0.217.0/node/upstream_modules.ts"; | ||
import "https://deno.land/std@0.217.0/node/url.ts"; | ||
import "https://deno.land/std@0.217.0/node/util.ts"; | ||
import "https://deno.land/std@0.217.0/node/v8.ts"; | ||
import "https://deno.land/std@0.217.0/node/vm.ts"; | ||
import "https://deno.land/std@0.217.0/node/wasi.ts"; | ||
import "https://deno.land/std@0.217.0/node/worker_threads.ts"; | ||
import "https://deno.land/std@0.217.0/node/zlib.ts"; | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { expandGlobSync } from "https://deno.land/[email protected]/fs/mod.ts"; | ||
import { expandGlobSync } from "fs/mod.ts"; | ||
|
||
const json = JSON.parse( | ||
Deno.readTextFileSync("package/src/common/deno-meta.json"), | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.