Skip to content

Commit

Permalink
Update deno std to 0.210
Browse files Browse the repository at this point in the history
  • Loading branch information
siokas committed Jan 3, 2024
1 parent 488f053 commit 20507be
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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.192.0/flags/mod.ts";
export { parse } from "https://deno.land/std@0.210.0/flags/mod.ts";
export {
blue,
bold,
green,
red,
reset as resetColor,
yellow,
} from "https://deno.land/std@0.192.0/fmt/colors.ts";
} from "https://deno.land/std@0.210.0/fmt/colors.ts";
export {
assert,
assertEquals,
assertThrows,
} from "https://deno.land/std@0.192.0/testing/asserts.ts";
} from "https://deno.land/std@0.210.0/testing/asserts.ts";
2 changes: 1 addition & 1 deletion src/Kernel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ abstract class Kernel {
* holding the values of the commands passed from the user
*/
// deno-lint-ignore no-explicit-any
[key: string]: any
[key: string]: any;

/** Holds all the commands */
public commands: Array<Command> = [];
Expand Down

0 comments on commit 20507be

Please sign in to comment.