@pmun/utils 0.3.9 → 0.4.0
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/index.d.ts +633 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +5 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pmun/utils",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.4.0",
|
|
5
5
|
"description": "Sunpm 的主观个人工具函数库",
|
|
6
6
|
"author": "sunpm",
|
|
7
7
|
"license": "MIT",
|
|
@@ -45,7 +45,10 @@
|
|
|
45
45
|
"docs:dev": "typedoc && vitepress dev",
|
|
46
46
|
"docs:vitepress": "vitepress build",
|
|
47
47
|
"docs:build": "typedoc && pnpm docs:vitepress",
|
|
48
|
-
"
|
|
48
|
+
"publish:only": "npm publish --access public",
|
|
49
|
+
"release:patch": "npm version patch && git push && git push --tags && pnpm publish:only",
|
|
50
|
+
"release:minor": "npm version minor && git push && git push --tags && pnpm publish:only",
|
|
51
|
+
"release:major": "npm version major && git push && git push --tags && pnpm publish:only"
|
|
49
52
|
},
|
|
50
53
|
"dependencies": {
|
|
51
54
|
"dayjs": "^1.11.13"
|