@byteluck-fe/model-driven-upgrade 1.3.0-beta.25

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.
Files changed (3) hide show
  1. package/README.md +10 -0
  2. package/package.json +31 -0
  3. package/src/index.ts +2 -0
package/README.md ADDED
@@ -0,0 +1,10 @@
1
+ # upgrade
2
+ 组件schema升级
3
+ ```
4
+ │ index.ts // 入口文件
5
+ │ types.ts // 类型
6
+ │ VersionBuilder.ts // 处理升级脚本
7
+
8
+ └─upgrade
9
+ └─ * // 所有升级脚本
10
+ ```
package/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "@byteluck-fe/model-driven-upgrade",
3
+ "version": "1.3.0-beta.25",
4
+ "description": "> TODO: description",
5
+ "author": "郝晨光 <2293885211@qq.com>",
6
+ "homepage": "",
7
+ "license": "ISC",
8
+ "main": "src/index.ts",
9
+ "module": "dist/esm/index.js",
10
+ "umd": "dist/index.umd.js",
11
+ "types": "dist/types",
12
+ "files": [
13
+ "bin",
14
+ "dist",
15
+ "types"
16
+ ],
17
+ "scripts": {
18
+ "compiler": "tsc --emitDeclarationOnly && swc src -d dist/esm -C jsc.target=es5 -D",
19
+ "cleanup": "rimraf ./dist",
20
+ "prepublish": "npm run cleanup && npm run compiler && npm run build",
21
+ "build": "rollup -c",
22
+ "postpublish": "node ../../scripts/postpublish.js"
23
+ },
24
+ "dependencies": {
25
+ "@byteluck-fe/model-driven-controls": "^1.3.0-beta.24",
26
+ "@byteluck-fe/model-driven-core": "^1.3.0-beta.24",
27
+ "@byteluck-fe/model-driven-shared": "^1.3.0-beta.22",
28
+ "tslib": "^2.1.0"
29
+ },
30
+ "gitHead": "ff1ff4bb662ce059bb4a4b75ef53ef5b88247b67"
31
+ }
package/src/index.ts ADDED
@@ -0,0 +1,2 @@
1
+ export * from './VersionBuilder'
2
+ export * from './types'