@ylzcc/editor 0.2.4 → 0.2.5
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/editor.es.js +21 -7
- package/dist/editor.umd.js +2 -2
- package/package.json +5 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ylzcc/editor",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "editor ui components",
|
|
6
6
|
"keywords": [
|
|
@@ -22,7 +22,10 @@
|
|
|
22
22
|
"start": "vite --open",
|
|
23
23
|
"build": "tsc && vite build",
|
|
24
24
|
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
25
|
-
"preview": "vite preview"
|
|
25
|
+
"preview": "vite preview",
|
|
26
|
+
"publish:patch": "npm --no-git-tag-version version patch && git commit -am '小版本升级' && npm run build && npm publish",
|
|
27
|
+
"publish:minor": "npm --no-git-tag-version version minor && git commit -am '中版本升级' && npm run build && npm publish",
|
|
28
|
+
"publish:major": "npm --no-git-tag-version version major && git commit -am '大版本升级' && npm run build && npm publish"
|
|
26
29
|
},
|
|
27
30
|
"dependencies": {
|
|
28
31
|
"@tiptap/core": "^2.2.4",
|