mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-16 22:10:13 +01:00
Update micromark import paths for changes in version 4, output any errors during webpack build.
This commit is contained in:
parent
f176c4fd65
commit
8fb6287300
3 changed files with 5 additions and 5 deletions
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
/* eslint-disable max-len, n/no-missing-import */
|
/* eslint-disable max-len, n/no-missing-import */
|
||||||
|
|
||||||
export { compile } from "micromark/lib/compile";
|
export { compile } from "micromark";
|
||||||
export { gfmAutolinkLiteralHtml } from "micromark-extension-gfm-autolink-literal";
|
export { gfmAutolinkLiteralHtml } from "micromark-extension-gfm-autolink-literal";
|
||||||
export { gfmFootnoteHtml } from "micromark-extension-gfm-footnote";
|
export { gfmFootnoteHtml } from "micromark-extension-gfm-footnote";
|
||||||
export { gfmTableHtml } from "micromark-extension-gfm-table";
|
export { gfmTableHtml } from "micromark-extension-gfm-table";
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,6 @@
|
||||||
export { gfmAutolinkLiteral } from "micromark-extension-gfm-autolink-literal";
|
export { gfmAutolinkLiteral } from "micromark-extension-gfm-autolink-literal";
|
||||||
export { gfmFootnote } from "micromark-extension-gfm-footnote";
|
export { gfmFootnote } from "micromark-extension-gfm-footnote";
|
||||||
export { gfmTable } from "micromark-extension-gfm-table";
|
export { gfmTable } from "micromark-extension-gfm-table";
|
||||||
export { parse } from "micromark/lib/parse";
|
export { parse } from "micromark";
|
||||||
export { postprocess } from "micromark/lib/postprocess";
|
export { postprocess } from "micromark";
|
||||||
export { preprocess } from "micromark/lib/preprocess";
|
export { preprocess } from "micromark";
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@
|
||||||
},
|
},
|
||||||
"bugs": "https://github.com/DavidAnson/markdownlint/issues",
|
"bugs": "https://github.com/DavidAnson/markdownlint/issues",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "webpack --no-stats"
|
"build": "webpack --stats minimal"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16"
|
"node": ">=16"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue