@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 CHANGED
@@ -1,20 +1,30 @@
1
1
  {
2
2
  "name": "@leiyin/v-form-renderer",
3
- "version": "0.1.2",
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": "338c64a5437b132fe34020bb1eb858fdf517baa2"
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
@@ -1,3 +0,0 @@
1
- import VFormRenderer from './v-form-renderer.vue'
2
-
3
- export default VFormRenderer
@@ -1,5 +0,0 @@
1
- declare module '*.vue' {
2
- import { DefineComponent } from 'vue'
3
- const component: DefineComponent<{}, {}, any>
4
- export default component
5
- }
@@ -1,6 +0,0 @@
1
- <script lang="ts" setup>
2
- </script>
3
-
4
- <template>
5
- <div>222</div>
6
- </template>
package/tsconfig.json DELETED
@@ -1,4 +0,0 @@
1
- {
2
- "extends": "../../tsconfig.base.json",
3
- "include": ["src", "rollup.config.mjs", "src/index.ts"]
4
- }