Skip to content

Commit c0dfbd6

Browse files
committed
Remove UMD bundle from package
1 parent 4eb7aa0 commit c0dfbd6

File tree

4 files changed

+3
-9
lines changed

4 files changed

+3
-9
lines changed

.eslintignore

-2
This file was deleted.

.prettierignore

-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
11
coverage/
2-
*.html
32
*.md
4-
react-markdown.min.js

package.json

+2-4
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,10 @@
7171
"type": "module",
7272
"main": "index.js",
7373
"types": "index.d.ts",
74-
"unpkg": "react-markdown.min.js",
7574
"files": [
7675
"lib/",
7776
"index.d.ts",
78-
"index.js",
79-
"react-markdown.min.js"
77+
"index.js"
8078
],
8179
"dependencies": {
8280
"@types/hast": "^3.0.0",
@@ -118,7 +116,7 @@
118116
"xo": "^0.56.0"
119117
},
120118
"scripts": {
121-
"build": "tsc --build --clean && tsc --build && type-coverage && esbuild index.js --bundle --minify --target=es2015 --outfile=react-markdown.min.js --global-name=Markdown --banner:js=\"(function (g, f) {typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = f() : typeof define === 'function' && define.amd ? define([], f) : (g = typeof globalThis !== 'undefined' ? globalThis : g || self, g.Markdown = f()); }(this, (function () { 'use strict';\" --footer:js=\"return Markdown;})));\"",
119+
"build": "tsc --build --clean && tsc --build && type-coverage",
122120
"format": "remark . --frail --output --quiet && prettier . --log-level warn --write && xo --fix",
123121
"prepack": "npm run build && npm run format",
124122
"test": "npm run build && npm run format && npm run test-coverage",

tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
"strict": true,
1212
"target": "es2020"
1313
},
14-
"exclude": ["coverage/", "node_modules/", "**/*.min.js"],
14+
"exclude": ["coverage/", "node_modules/"],
1515
"include": ["**/*.js", "**/*.jsx", "lib/complex-types.d.ts"]
1616
}

0 commit comments

Comments
 (0)