@apform-ui/core 1.10.29 → 1.10.30

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apform-ui/core",
3
- "version": "1.10.29",
3
+ "version": "1.10.30",
4
4
  "type": "module",
5
5
  "author": "yangdongnan",
6
6
  "license": "MIT",
@@ -50,6 +50,16 @@
50
50
  "styles",
51
51
  "README.md"
52
52
  ],
53
+ "scripts": {
54
+ "dev": "vite",
55
+ "build": "vite build",
56
+ "build:check": "vue-tsc --noEmit && vite build",
57
+ "preview": "vite preview",
58
+ "test": "vitest run",
59
+ "test:watch": "vitest",
60
+ "clean": "rm -rf dist",
61
+ "prepublishOnly": "pnpm run build"
62
+ },
53
63
  "peerDependencies": {
54
64
  "@vue-flow/background": ">=1.3.0",
55
65
  "@vue-flow/controls": ">=1.1.0",
@@ -109,14 +119,5 @@
109
119
  "vue": "^3.5.13",
110
120
  "vue-tsc": "^2.2.8",
111
121
  "vue-virtual-scroller": "2.0.0-beta.8"
112
- },
113
- "scripts": {
114
- "dev": "vite",
115
- "build": "vite build",
116
- "build:check": "vue-tsc --noEmit && vite build",
117
- "preview": "vite preview",
118
- "test": "vitest run",
119
- "test:watch": "vitest",
120
- "clean": "rm -rf dist"
121
122
  }
122
- }
123
+ }