From ff07e55cf08ac17a0faa674dd1e05980e6c0aa8e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 17 Feb 2024 13:12:41 +0000 Subject: [PATCH] chore(deps): update dependency https://deno.land/std to v0.216.0 (#134) --- deno-lib/updateReadme.test.ts | 2 +- deno-lib/validateYaml.test.ts | 2 +- deno-lib/validateYaml.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/deno-lib/updateReadme.test.ts b/deno-lib/updateReadme.test.ts index f6d5fd3e..64473135 100644 --- a/deno-lib/updateReadme.test.ts +++ b/deno-lib/updateReadme.test.ts @@ -1,7 +1,7 @@ import { assertEquals, assertThrows, -} from "https://deno.land/std@0.215.0/assert/mod.ts"; +} from "https://deno.land/std@0.216.0/assert/mod.ts"; import { updateReadme } from "./updateReadme.ts"; const readme_default = ` diff --git a/deno-lib/validateYaml.test.ts b/deno-lib/validateYaml.test.ts index 06f1d7f2..29454be7 100644 --- a/deno-lib/validateYaml.test.ts +++ b/deno-lib/validateYaml.test.ts @@ -1,4 +1,4 @@ -import { assertEquals } from "https://deno.land/std@0.215.0/assert/mod.ts"; +import { assertEquals } from "https://deno.land/std@0.216.0/assert/mod.ts"; import { validateYaml } from "./validateYaml.ts"; import blogPostSchema from "./fixtures/updateYaml/blogpost.schema.json" with { diff --git a/deno-lib/validateYaml.ts b/deno-lib/validateYaml.ts index f6504933..204a9c77 100644 --- a/deno-lib/validateYaml.ts +++ b/deno-lib/validateYaml.ts @@ -1,5 +1,5 @@ import Ajv, { type Schema } from "https://esm.sh/ajv@8.12.0?pin=v135"; -import { parse } from "https://deno.land/std@0.215.0/yaml/parse.ts"; +import { parse } from "https://deno.land/std@0.216.0/yaml/parse.ts"; /** * Validates a string of YAML content against a JSON schema with Ajv.