@mathcrowd/mmarked 1.8.7 → 1.8.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/package.json +4 -3
- package/dist/browser.umd.js +0 -2
- package/dist/index.cjs +0 -2
- package/dist/index.d.ts +0 -28
- package/dist/index.mjs +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [1.8.9](https://cloud.mathcrowd.cn:2444/agile/frontend/mathcrowd-marked-lib/compare/v1.8.8...v1.8.9) (2025-10-03)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
## [1.8.8](https://cloud.mathcrowd.cn:2444/agile/frontend/mathcrowd-marked-lib/compare/v1.8.7...v1.8.8) (2025-09-10)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
1
9
|
## [1.8.7](https://cloud.mathcrowd.cn:2444/agile/frontend/mathcrowd-marked-lib/compare/v1.8.6...v1.8.7) (2025-07-23)
|
|
2
10
|
|
|
3
11
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mathcrowd/mmarked",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.9",
|
|
4
4
|
"description": "A customized markdown parser/renderer with tex2svg.",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"types": "tsc --noemit",
|
|
22
22
|
"lint": "eslint src",
|
|
23
23
|
"lint:fix": "eslint src --fix",
|
|
24
|
-
"docs": "
|
|
24
|
+
"docs": "node demo/build.js",
|
|
25
25
|
"build": "npm run clean && npm run types && rollup -c ",
|
|
26
26
|
"demo": "npm run clean && rollup -c rollup.config.demo.mjs --watch",
|
|
27
27
|
"test": "jest --passWithNoTests",
|
|
@@ -71,10 +71,11 @@
|
|
|
71
71
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
72
72
|
"rollup-plugin-serve": "^1.1.1",
|
|
73
73
|
"rollup-plugin-visualizer": "^5.12.0",
|
|
74
|
+
"tslib": "^2.8.1",
|
|
74
75
|
"typescript-eslint": "^8.18.1"
|
|
75
76
|
},
|
|
76
77
|
"peerDependencies": {
|
|
77
78
|
"highlight.js": "^11.10.0",
|
|
78
79
|
"mathjax-full": "^3.2.2"
|
|
79
80
|
}
|
|
80
|
-
}
|
|
81
|
+
}
|