@maxtropy/v-components 0.1.4-beta.4 → 0.1.4-beta.6
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/dist/mx-vcomponents.es.js +1470 -1461
- package/package.json +6 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maxtropy/v-components",
|
|
3
|
-
"version": "0.1.4-beta.
|
|
3
|
+
"version": "0.1.4-beta.6",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist"
|
|
6
6
|
],
|
|
@@ -21,12 +21,11 @@
|
|
|
21
21
|
"build": "vitepress build docs",
|
|
22
22
|
"docs:serve": "vitepress serve docs",
|
|
23
23
|
"prepare": "husky install",
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"release:beta": "npm version prerelease --preid=beta && npm run build:components && npm publish --tag beta"
|
|
24
|
+
"release": "npm run commit patch && npm run build:components && npm publish && node ./push-notify.js",
|
|
25
|
+
"postrelease": "git push --follow-tags",
|
|
26
|
+
"minor:beta": "npm run commit preminor beta && npm run build:components && npm publish --tag beta",
|
|
27
|
+
"release:beta": "npm run commit prerelease beta && npm run build:components && npm publish --tag beta",
|
|
28
|
+
"commit": "node ./release.js"
|
|
30
29
|
},
|
|
31
30
|
"peerDependencies": {
|
|
32
31
|
"element-plus": ">=2.3.4",
|