Skip to content

Commit a5a5d58

Browse files
committed
build: v2.0.0-alpha.2
1 parent 5828115 commit a5a5d58

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Build powerful vue form with JSON schema and composition api. Any custom input c
1111

1212
[:zap: Live Preview](https://codetrial.github.io/element-form-builder) | [:book: Docs](https://codetrial.github.io/element-form-builder)
1313

14-
![Screen Capture](.github/preview.gif)
14+
![Screen Capture](https://github.com/codetrial/element-form-builder/raw/develop/.github/preview.gif)
1515

1616
## Core Features
1717

package.json

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "element-form-builder",
3-
"version": "2.0.0-alpha.1",
3+
"version": "2.0.0-alpha.2",
44
"description": "Build powerful element-ui form with JSON schema.",
55
"main": "lib/index.js",
66
"module": "lib/index.esm.js",
@@ -31,11 +31,14 @@
3131
"keywords": [
3232
"vue",
3333
"use",
34+
"vue-use",
3435
"composition",
35-
"element",
36-
"form",
37-
"builder",
38-
"json"
36+
"vue-composition",
37+
"vue-composition-api",
38+
"vue-form",
39+
"json-form",
40+
"formbuilder",
41+
"form-builder"
3942
],
4043
"author": "[email protected]",
4144
"license": "MIT",
@@ -45,7 +48,8 @@
4548
"@vue/composition-api": "^0.3.4",
4649
"deepmerge": "^4.2.2",
4750
"vee-validate": "^3.0.11",
48-
"vue": "^2.6.11"
51+
"vue": "^2.6.11",
52+
"vue-runtime-helpers": "^1.1.2"
4953
},
5054
"devDependencies": {
5155
"@babel/core": "^7.7.7",

rollup.config.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ const commonExternal = function(id) {
2323
return (
2424
/^vue/i.test(id) ||
2525
/^@vue\/composition-api/i.test(id) ||
26-
/^lodash/i.test(id) ||
27-
/^axios/i.test(id) ||
26+
/^@fext\/vue-use/i.test(id) ||
2827
/^@babel\/runtime-corejs3/i.test(id)
2928
);
3029
};

0 commit comments

Comments
 (0)