-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(lint): ensure that deno lint passes
Deno lint was failing due to the deprecation of Deno.copy as well as a re-declared global identifier for $. Both of these issues are now fixed, however as a side effect, the version of the std library needed to be updated to have access to the ioutil.copy method, and since the std lib was updated to the latest, the supported semver version of deno in the readme also needed to be udpate.
- Loading branch information
1 parent
6b106b9
commit 513a4da
Showing
7 changed files
with
23 additions
and
22 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 |
---|---|---|
@@ -1,24 +1,24 @@ | ||
export * as async from "https://deno.land/std@0.93.0/async/mod.ts"; | ||
export type { Deferred } from "https://deno.land/std@0.93.0/async/mod.ts"; | ||
export * as path from "https://deno.land/std@0.93.0/path/mod.ts"; | ||
export * as async from "https://deno.land/std@0.104.0/async/mod.ts"; | ||
export type { Deferred } from "https://deno.land/std@0.104.0/async/mod.ts"; | ||
export * as path from "https://deno.land/std@0.104.0/path/mod.ts"; | ||
export type { | ||
FormatInputPathObject, | ||
GlobOptions, | ||
GlobToRegExpOptions, | ||
ParsedPath, | ||
} from "https://deno.land/std@0.93.0/path/mod.ts"; | ||
export * as io from "https://deno.land/std@0.93.0/io/mod.ts"; | ||
export type { ReadLineResult } from "https://deno.land/std@0.93.0/io/mod.ts"; | ||
export * as fs from "https://deno.land/std@0.93.0/fs/mod.ts"; | ||
export * as log from "https://deno.land/std@0.93.0/log/mod.ts"; | ||
} from "https://deno.land/std@0.104.0/path/mod.ts"; | ||
export * as io from "https://deno.land/std@0.104.0/io/mod.ts"; | ||
export type { ReadLineResult } from "https://deno.land/std@0.104.0/io/mod.ts"; | ||
export * as fs from "https://deno.land/std@0.104.0/fs/mod.ts"; | ||
export * as log from "https://deno.land/std@0.104.0/log/mod.ts"; | ||
export type { | ||
LevelName, | ||
LogConfig, | ||
} from "https://deno.land/std@0.93.0/log/mod.ts"; | ||
export * as flags from "https://deno.land/std@0.93.0/flags/mod.ts"; | ||
} from "https://deno.land/std@0.104.0/log/mod.ts"; | ||
export * as flags from "https://deno.land/std@0.104.0/flags/mod.ts"; | ||
export type { | ||
ArgParsingOptions, | ||
Args, | ||
} from "https://deno.land/std@0.93.0/flags/mod.ts"; | ||
} from "https://deno.land/std@0.104.0/flags/mod.ts"; | ||
export { colors } from "https://deno.land/x/cliffy@v0.18.2/ansi/colors.ts"; | ||
export { default as shq } from "https://esm.sh/shq@1.0.2"; |
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