custom-variant-form 2.3.4 → 2.3.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/README.md +24 -0
- package/package.json +11 -11
- /package/{VFormDesigner.css → dist/VFormDesigner.css} +0 -0
- /package/{VFormDesigner.umd.min.js → dist/VFormDesigner.umd.min.js} +0 -0
- /package/{VFormRender.css → dist/VFormRender.css} +0 -0
- /package/{VFormRender.umd.min.js → dist/VFormRender.umd.min.js} +0 -0
package/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
### 安装依赖
|
|
2
|
+
```
|
|
3
|
+
npm install custom-variant-form
|
|
4
|
+
```
|
|
5
|
+
|
|
6
|
+
### 开发调试
|
|
7
|
+
```
|
|
8
|
+
npm run serve
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
### 生产打包
|
|
12
|
+
```
|
|
13
|
+
npm run build
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
### 表单设计器 + 表单渲染器打包
|
|
17
|
+
```
|
|
18
|
+
npm run lib
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
### 表单渲染器打包
|
|
22
|
+
```
|
|
23
|
+
npm run lib-render
|
|
24
|
+
```
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
2
|
+
"name": "custom-variant-form",
|
|
3
|
+
"version": "2.3.6",
|
|
4
|
+
"private": false,
|
|
5
|
+
"main": "dist/VFormDesigner.umd.min.js",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"variant-form",
|
|
8
|
+
"vform",
|
|
9
|
+
"element-ui",
|
|
10
|
+
"form-designer"
|
|
11
|
+
]
|
|
12
|
+
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|