@zhaoyifannan/tvue 2.0.13 → 3.1.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/LICENSE +1 -1
- package/README.md +1 -2
- package/lib/index.css +1 -1
- package/lib/locale/format.js +1 -4
- package/lib/locale/index.js +6 -7
- package/lib/tvue.js +3385 -2657
- package/lib/tvue.min.js +3 -13
- package/package.json +29 -28
package/package.json
CHANGED
|
@@ -1,24 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zhaoyifannan/tvue",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.1.1",
|
|
4
4
|
"description": "A Magic Configurable Web Framework",
|
|
5
5
|
"main": "lib/tvue.min.js",
|
|
6
6
|
"unpkg": "lib/tvue.min.js",
|
|
7
7
|
"jsdelivr": "lib/tvue.min.js",
|
|
8
8
|
"scripts": {
|
|
9
|
-
"
|
|
9
|
+
"dev": "pnpm gen:version && cross-env TARGET=dev gulp watch",
|
|
10
10
|
"gen:version": "node build/version.js",
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"hotfix": "node scripts/build.js --type=hotfix --github=origin:2.x",
|
|
17
|
-
"default": "node scripts/build.js --type=default --github=origin:2.x"
|
|
11
|
+
"build": "pnpm gen:version && cross-env TARGET=prod UINAME=element-plus gulp build",
|
|
12
|
+
"all": "pnpm build && pnpm dev",
|
|
13
|
+
"release": "node scripts/build.js --type=release --github=origin:main",
|
|
14
|
+
"hotfix": "node scripts/build.js --type=hotfix --github=origin:main",
|
|
15
|
+
"default": "node scripts/build.js --type=default --github=origin:main"
|
|
18
16
|
},
|
|
19
17
|
"keywords": [
|
|
20
18
|
"vue",
|
|
21
|
-
"element-
|
|
19
|
+
"element-plus",
|
|
22
20
|
"tvue"
|
|
23
21
|
],
|
|
24
22
|
"repository": {
|
|
@@ -32,42 +30,45 @@
|
|
|
32
30
|
},
|
|
33
31
|
"homepage": "https://gitee.com/zhaoyifannangit/tvue/blob/master/README.md",
|
|
34
32
|
"devDependencies": {
|
|
35
|
-
"@babel/
|
|
36
|
-
"@babel/
|
|
33
|
+
"@babel/cli": "^7.12.1",
|
|
34
|
+
"@babel/core": "^7.11.4",
|
|
35
|
+
"@babel/plugin-transform-runtime": "^7.12.1",
|
|
36
|
+
"@babel/preset-env": "^7.11.5",
|
|
37
|
+
"@babel/runtime": "^7.26.0",
|
|
38
|
+
"@vue/compiler-sfc": "^3.0.9",
|
|
39
|
+
"@vue/component-compiler-utils": "^3.2.0",
|
|
37
40
|
"axios": "^0.21.1",
|
|
38
41
|
"babel-loader": "^8.2.2",
|
|
39
42
|
"cross-env": "^3.1.3",
|
|
40
43
|
"css-loader": "^5.2.0",
|
|
41
|
-
"element-
|
|
44
|
+
"element-plus": "^2.9.0",
|
|
42
45
|
"eslint": "4.14.0",
|
|
43
46
|
"eslint-config-elemefe": "0.1.1",
|
|
44
47
|
"eslint-loader": "^1.9.0",
|
|
45
48
|
"eslint-plugin-html": "^4.0.1",
|
|
46
49
|
"eslint-plugin-json": "^1.2.0",
|
|
47
|
-
"gulp": "^4.0.
|
|
48
|
-
"gulp-autoprefixer": "^
|
|
49
|
-
"gulp-cssmin": "^0.
|
|
50
|
-
"gulp-postcss": "^
|
|
51
|
-
"gulp-sass": "^
|
|
50
|
+
"gulp": "^4.0.2",
|
|
51
|
+
"gulp-autoprefixer": "^8.0.0",
|
|
52
|
+
"gulp-cssmin": "^0.2.0",
|
|
53
|
+
"gulp-postcss": "^9.0.1",
|
|
54
|
+
"gulp-sass": "^6.0.0",
|
|
52
55
|
"progress-bar-webpack-plugin": "^1.11.0",
|
|
53
|
-
"sass": "^1.
|
|
54
|
-
"vue": "
|
|
55
|
-
"vue-loader": "^
|
|
56
|
+
"sass": "^1.52.1",
|
|
57
|
+
"vue": "^3.3.4",
|
|
58
|
+
"vue-loader": "^16.1.2",
|
|
56
59
|
"webpack": "^4.27.0",
|
|
57
60
|
"webpack-bundle-analyzer": "^3.0.3",
|
|
58
61
|
"webpack-merge": "^4.1.4"
|
|
59
62
|
},
|
|
60
63
|
"peerDependencies": {
|
|
61
|
-
"element-
|
|
62
|
-
"vue": ">=2.
|
|
64
|
+
"element-plus": ">=2.2.0",
|
|
65
|
+
"vue": ">=3.2.0"
|
|
63
66
|
},
|
|
64
67
|
"dependencies": {
|
|
65
|
-
"@
|
|
68
|
+
"@element-plus/icons-vue": "^2.0.6",
|
|
66
69
|
"countup.js": "^1.9.3",
|
|
67
|
-
"dayjs": "^1.10.
|
|
68
|
-
"lodash": "^4.17.21"
|
|
69
|
-
"nprogress": "^0.2.0",
|
|
70
|
-
"vue-cropper": "^0.5.8"
|
|
70
|
+
"dayjs": "^1.10.4",
|
|
71
|
+
"lodash": "^4.17.21"
|
|
71
72
|
},
|
|
72
73
|
"files": [
|
|
73
74
|
"lib",
|