@leiyin/v-form-renderer 0.1.2 → 0.1.3-alpha.1
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 +15 -5
- package/rollup.config.mjs +0 -27
- package/src/index.ts +0 -3
- package/src/shims-vue.d.ts +0 -5
- package/src/v-form-renderer.vue +0 -6
- package/tsconfig.json +0 -4
package/package.json
CHANGED
|
@@ -1,20 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leiyin/v-form-renderer",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3-alpha.1",
|
|
4
4
|
"main": "dist/index.cjs.js",
|
|
5
5
|
"module": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
|
+
"keywords": [
|
|
11
|
+
"vue",
|
|
12
|
+
"element",
|
|
13
|
+
"render",
|
|
14
|
+
"form",
|
|
15
|
+
"component"
|
|
16
|
+
],
|
|
17
|
+
"publishConfig": {
|
|
18
|
+
"access": "public"
|
|
19
|
+
},
|
|
7
20
|
"scripts": {
|
|
8
21
|
"clean": "rimraf dist node_modules/.cache",
|
|
9
22
|
"build": "pnpm clean && rollup -c"
|
|
10
23
|
},
|
|
11
|
-
"publishConfig": {
|
|
12
|
-
"access": "public"
|
|
13
|
-
},
|
|
14
24
|
"devDependencies": {
|
|
15
25
|
"rimraf": "^6.1.2",
|
|
16
26
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
17
27
|
"rollup-plugin-vue": "^6.0.0"
|
|
18
28
|
},
|
|
19
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "3fa855eb7398827cf7e02535b8bafa8f363021ed"
|
|
20
30
|
}
|
package/rollup.config.mjs
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import vue from 'rollup-plugin-vue'
|
|
2
|
-
import typescript from 'rollup-plugin-typescript2';
|
|
3
|
-
|
|
4
|
-
export default {
|
|
5
|
-
input: ["src/index.ts"],
|
|
6
|
-
output: [
|
|
7
|
-
{
|
|
8
|
-
file: 'dist/index.esm.js',
|
|
9
|
-
format: 'esm',
|
|
10
|
-
sourcemap: true
|
|
11
|
-
},
|
|
12
|
-
{
|
|
13
|
-
file: 'dist/index.cjs.js',
|
|
14
|
-
format: 'cjs',
|
|
15
|
-
exports: 'named',
|
|
16
|
-
sourcemap: true
|
|
17
|
-
}
|
|
18
|
-
],
|
|
19
|
-
plugins: [
|
|
20
|
-
vue({
|
|
21
|
-
target: 'browser',
|
|
22
|
-
preprocessStyles: true
|
|
23
|
-
}),
|
|
24
|
-
typescript(),
|
|
25
|
-
],
|
|
26
|
-
external: ["vue"]
|
|
27
|
-
};
|
package/src/index.ts
DELETED
package/src/shims-vue.d.ts
DELETED
package/src/v-form-renderer.vue
DELETED
package/tsconfig.json
DELETED