@mathcrowd/mmarked 3.1.3 → 3.1.4
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 +15 -0
- package/README.md +27 -1
- package/README.zh.md +27 -1
- package/dist/browser.umd.js +1 -1
- package/dist/demo.esm.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +9 -2
- package/dist/index.mjs +1 -1
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mathcrowd/mmarked",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.4",
|
|
4
4
|
"description": "A customized markdown parser/renderer with tex2svg.",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -26,7 +26,8 @@
|
|
|
26
26
|
"build:dev": "npm run clean && npm run types && rollup -c",
|
|
27
27
|
"demo": "npm run clean && rollup -c rollup.config.demo.mjs --watch",
|
|
28
28
|
"test": "jest --passWithNoTests",
|
|
29
|
-
"changelog": "git fetch && npx conventional-changelog -p angular -i CHANGELOG.md -s --release-count 0 && git add package.json CHANGELOG.md && git commit -m 'chore: package.json / CHANGELOG updated.'"
|
|
29
|
+
"changelog": "git fetch && npx conventional-changelog -p angular -i CHANGELOG.md -s --release-count 0 && git add package.json CHANGELOG.md && git commit -m 'chore: package.json / CHANGELOG updated.'",
|
|
30
|
+
"release": "npm version ${npm_config_bump:-patch} --no-git-tag-version && npm run changelog"
|
|
30
31
|
},
|
|
31
32
|
"repository": {
|
|
32
33
|
"type": "git",
|