From 20507be07b24cb472ce0f346955de637925dc16d Mon Sep 17 00:00:00 2001 From: Apostolos Siokas Date: Wed, 3 Jan 2024 11:27:02 +0000 Subject: [PATCH] Update deno std to 0.210 --- deps.ts | 6 +++--- src/Kernel.ts | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/deps.ts b/deps.ts index 945682d..ba82dd6 100644 --- a/deps.ts +++ b/deps.ts @@ -1,5 +1,5 @@ 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, @@ -7,9 +7,9 @@ export { 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"; diff --git a/src/Kernel.ts b/src/Kernel.ts index f86862a..70a02d2 100644 --- a/src/Kernel.ts +++ b/src/Kernel.ts @@ -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 = [];