Add micromark-extension-directive to markdownlint-micromark package exports.

This commit is contained in:
David Anson 2024-01-01 21:39:06 -08:00
parent 0fe351798a
commit 5f3d73a3b1
3 changed files with 4 additions and 1 deletions

View file

@ -3,6 +3,7 @@
/* eslint-disable n/no-missing-import */
export { compile } from "micromark";
export { directiveHtml } from "micromark-extension-directive";
export { gfmAutolinkLiteralHtml } from "micromark-extension-gfm-autolink-literal";
export { gfmFootnoteHtml } from "micromark-extension-gfm-footnote";
export { gfmTableHtml } from "micromark-extension-gfm-table";

View file

@ -2,6 +2,7 @@
/* eslint-disable n/no-missing-import */
export { directive } from "micromark-extension-directive";
export { gfmAutolinkLiteral } from "micromark-extension-gfm-autolink-literal";
export { gfmFootnote } from "micromark-extension-gfm-footnote";
export { gfmTable } from "micromark-extension-gfm-table";

View file

@ -1,6 +1,6 @@
{
"name": "markdownlint-micromark",
"version": "0.1.7",
"version": "0.1.8",
"description": "A trivial package that re-exports some micromark functionality as a CommonJS module",
"type": "commonjs",
"exports": "./micromark.cjs",
@ -21,6 +21,7 @@
},
"devDependencies": {
"micromark": "4.0.0",
"micromark-extension-directive": "3.0.0",
"micromark-extension-gfm-autolink-literal": "2.0.0",
"micromark-extension-gfm-footnote": "2.0.0",
"micromark-extension-gfm-table": "2.0.0",