mdsvr 2.2.1 → 2.2.2
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/package.json +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mdsvr",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.2",
|
|
4
4
|
"description": "Full-featured documentation website server with MDX support, site settings, SEO, and navigation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
"version:minor": "npm version minor",
|
|
26
26
|
"version:major": "npm version major",
|
|
27
27
|
"release": "npm run release:patch",
|
|
28
|
-
"release:patch": "npm
|
|
29
|
-
"release:minor": "npm
|
|
30
|
-
"release:major": "npm
|
|
28
|
+
"release:patch": "npm version patch && npm run build && npm test && npm publish",
|
|
29
|
+
"release:minor": "npm version minor && npm run build && npm test && npm publish",
|
|
30
|
+
"release:major": "npm version major && npm run build && npm test && npm publish",
|
|
31
31
|
"publish": "npm publish"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|