Move micromark-parse.mjs from helpers to library, remove all dependencies from helpers.

This commit is contained in:
David Anson 2024-11-30 20:42:14 -08:00
parent 1e71f6f44e
commit 3599f694ba
7 changed files with 6 additions and 14 deletions

View file

@ -9,7 +9,7 @@ import { promisify } from "node:util";
import { initialize as cacheInitialize } from "./cache.mjs";
import { version } from "./constants.mjs";
import rules from "./rules.mjs";
import { parse as micromarkParse } from "../helpers/micromark-parse.mjs";
import { parse as micromarkParse } from "./micromark-parse.mjs";
import * as helpers from "../helpers/helpers.cjs";
/**