Convert micromark.mjs to micromark.cjs for use by synchronous APIs in markdownlint.js.

This commit is contained in:
David Anson 2023-01-14 15:30:47 -08:00
parent c2192204dc
commit c9e8f8b8ea
2 changed files with 8 additions and 8 deletions

View file

@ -3,7 +3,7 @@
import fs from "node:fs/promises";
import test from "ava";
import { newLineRe } from "../helpers/helpers.js";
import { parse } from "../lib/micromark.mjs";
import { parse } from "../lib/micromark.cjs";
test("parse", async(t) => {
t.plan(1);