-
Notifications
You must be signed in to change notification settings - Fork 109
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 #1887 from nellh/deno-deps-update
Update Deno dependencies
- Loading branch information
Showing
10 changed files
with
379 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"imports": { | ||
"std/": "https://deno.land/[email protected]/" | ||
}, | ||
"tasks": { | ||
"test": "deno test -A src/tests/" | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
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 +1 @@ | ||
export * as colors from 'https://deno.land/std@0.177.0/fmt/colors.ts' | ||
export * as colors from 'std/fmt/colors.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export { walk } from 'https://deno.land/std@0.177.0/fs/walk.ts' | ||
export { walk } from 'std/fs/walk.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
export { | ||
Logger, | ||
LogLevels, | ||
error, | ||
critical, | ||
debug, | ||
error, | ||
getLogger, | ||
info, | ||
Logger, | ||
LogLevels, | ||
setup, | ||
warning, | ||
handlers, | ||
getLogger, | ||
} from 'https://deno.land/[email protected]/log/mod.ts' | ||
export { LogLevelNames } from 'https://deno.land/[email protected]/log/levels.ts' | ||
export type { LevelName } from 'https://deno.land/[email protected]/log/mod.ts' | ||
} from "std/log/mod.ts" | ||
export { ConsoleHandler } from "std/log/console_handler.ts" | ||
export { LogLevelNames } from "std/log/levels.ts" | ||
export type { LevelName } from "std/log/mod.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export { | ||
readAll, | ||
readerFromStreamReader, | ||
} from 'https://deno.land/std@0.177.0/streams/mod.ts' | ||
} from 'std/streams/mod.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