Add micromark-extension-gfm-table to markdownlint-micromark package exports.

This commit is contained in:
David Anson 2023-02-22 22:55:56 -08:00
parent 4b27bac79b
commit 60ad79fd2b
2 changed files with 3 additions and 1 deletions

View file

@ -4,6 +4,7 @@
export { gfmAutolinkLiteral } from "micromark-extension-gfm-autolink-literal";
export { gfmFootnote } from "micromark-extension-gfm-footnote";
export { gfmTable } from "micromark-extension-gfm-table";
export { parse } from "micromark/lib/parse";
export { postprocess } from "micromark/lib/postprocess";
export { preprocess } from "micromark/lib/preprocess";

View file

@ -1,6 +1,6 @@
{
"name": "markdownlint-micromark",
"version": "0.1.1",
"version": "0.1.2",
"description": "A trivial package that re-exports some micromark functionality as a CommonJS module",
"type": "commonjs",
"exports": "./micromark.cjs",
@ -22,6 +22,7 @@
"micromark": "3.1.0",
"micromark-extension-gfm-autolink-literal": "1.0.3",
"micromark-extension-gfm-footnote": "1.0.4",
"micromark-extension-gfm-table": "1.0.5",
"webpack": "5.75.0",
"webpack-cli": "5.0.1"
}