Update markdownlint-micromark package artifacts for browser scenarios.

This commit is contained in:
David Anson 2023-02-08 20:31:33 -08:00
parent 00bf27406c
commit 8e66b8f926
3 changed files with 7 additions and 6 deletions

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
{
"name": "markdownlint-micromark",
"version": "0.1.0",
"version": "0.1.1",
"description": "A trivial package that re-exports some micromark functionality as a CommonJS module",
"type": "commonjs",
"exports": "./micromark.cjs",

View file

@ -25,6 +25,7 @@ const web = {
"output": {
...base.output,
"library": {
"name": "micromarkBrowser",
"type": "var"
}
},
@ -61,7 +62,7 @@ module.exports = [
...web,
...production,
"output": {
...commonjs.output,
...web.output,
"filename": "micromark-browser.js"
}
},
@ -69,7 +70,7 @@ module.exports = [
...web,
...development,
"output": {
...commonjs.output,
...web.output,
"filename": "micromark-browser.dev.js"
}
}