Skip to content

Commit

Permalink
Bump deno to 0.192.0
Browse files Browse the repository at this point in the history
  • Loading branch information
siokas committed Jun 23, 2023
1 parent ed199f2 commit 488f053
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
export const test = Deno.test;
export { parse } from "https://deno.land/std@0.174.0/flags/mod.ts";
export { parse } from "https://deno.land/std@0.192.0/flags/mod.ts";
export {
blue,
bold,
green,
red,
reset as resetColor,
yellow,
} from "https://deno.land/std@0.174.0/fmt/colors.ts";
} from "https://deno.land/std@0.192.0/fmt/colors.ts";
export {
assert,
assertEquals,
assertThrows,
} from "https://deno.land/std@0.174.0/testing/asserts.ts";
} from "https://deno.land/std@0.192.0/testing/asserts.ts";
1 change: 1 addition & 0 deletions src/Kernel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ abstract class Kernel {
* Multiple variables that will be defined during runtime,
* holding the values of the commands passed from the user
*/
// deno-lint-ignore no-explicit-any
[key: string]: any

This comment has been minimized.

Copy link
@martin-braun

martin-braun Jun 23, 2023

What can it be @siokas? You could chain multiple types with the pipe operator (|) instead of using any.


/** Holds all the commands */
Expand Down

0 comments on commit 488f053

Please sign in to comment.