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", "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", "description": "A trivial package that re-exports some micromark functionality as a CommonJS module",
"type": "commonjs", "type": "commonjs",
"exports": "./micromark.cjs", "exports": "./micromark.cjs",

View file

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