From dd8047e44b0ed5cff5a8ee3c1038ce816b41e24b Mon Sep 17 00:00:00 2001 From: vrugtehagel Date: Sun, 16 Jun 2024 21:08:05 +0200 Subject: [PATCH] Revert previous change, release 0.0.5 --- deno.json | 2 +- mod.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/deno.json b/deno.json index 67b0976..a51d7f3 100644 --- a/deno.json +++ b/deno.json @@ -1,6 +1,6 @@ { "name": "@vrugtehagel/eleventy-document-outline", - "version": "0.0.4", + "version": "0.0.5", "exports": "./mod.ts", "publish": { "include": ["mod.ts", "README.md"] diff --git a/mod.ts b/mod.ts index e8f95e6..bbfbc69 100644 --- a/mod.ts +++ b/mod.ts @@ -1,5 +1,4 @@ import * as HTMLParser from "npm:node-html-parser@^6.1"; -import { crypto } from "jsr:@std/crypto@^0.224"; /** Allowed header tag names, lowercased */ const HEADERS: string[] = ["h1", "h2", "h3", "h4", "h5", "h6", "h7"] as const;