meixifrontserve 2.0.66 → 2.0.68
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/README.md +74 -74
- package/bin/index.js +102 -102
- package/config/package.json +98 -98
- package/config/packageV2.json +98 -98
- package/config/projectConfig.js +277 -277
- package/config/urlConfig.js +51 -51
- package/package.json +1 -1
- package/scripts/apiConfig.js +21 -21
- package/scripts/checkUpdate.js +72 -72
- package/scripts/envByBetaController.js +19 -19
- package/scripts/envByBuildController.js +103 -103
- package/scripts/envByDevServerController.js +13 -13
- package/scripts/envByPre2Controller.js +21 -21
- package/scripts/envByPreController.js +21 -21
- package/scripts/envByProdController.js +20 -20
- package/scripts/envByServerController.js +196 -196
- package/scripts/envByTest2Controller.js +21 -21
- package/scripts/envByTest3Controller.js +21 -21
- package/scripts/envByTestController.js +21 -21
- package/scripts/envByTestServerController.js +15 -15
- package/scripts/rollupBuildController.js +177 -177
- package/scripts/serveController.js +110 -110
package/config/packageV2.json
CHANGED
|
@@ -1,98 +1,98 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "newoaadmin",
|
|
3
|
-
"version": "1.0.0",
|
|
4
|
-
"private": true,
|
|
5
|
-
"scripts": {
|
|
6
|
-
"serve": "vue-cli-service serve",
|
|
7
|
-
"build:beta": "vue-cli-service build --mode beta",
|
|
8
|
-
"build:testing": "vue-cli-service build --mode testing",
|
|
9
|
-
"build:pre": "vue-cli-service build --mode pre",
|
|
10
|
-
"build:prod": "vue-cli-service build --mode prod",
|
|
11
|
-
"rollupBuild": "sudo meixirollupbuild -b / --pathTarget src/pages/ordermanage/oaorder/index.js-lib/oaOrderIndex.umd.js",
|
|
12
|
-
"lint": "eslint --ext .js,.vue,.ts,.tsx src",
|
|
13
|
-
"fix:lint": "eslint --fix --ext .js,.vue,.ts,.tsx src",
|
|
14
|
-
"prepare": "husky install",
|
|
15
|
-
"lint:lint-staged": "lint-staged",
|
|
16
|
-
"git": "npm run fix:lint && git add . && cz",
|
|
17
|
-
"commit": "cz"
|
|
18
|
-
},
|
|
19
|
-
"dependencies": {
|
|
20
|
-
"@babel/plugin-proposal-optional-chaining": "^7.18.9",
|
|
21
|
-
"@wangeditor/editor": "^5.1.14",
|
|
22
|
-
"@wangeditor/editor-for-vue": "^1.0.2",
|
|
23
|
-
"@wangeditor/plugin-md": "^1.0.0",
|
|
24
|
-
"async_hooks": "^1.0.0",
|
|
25
|
-
"axios": "^0.26.0",
|
|
26
|
-
"babel-helper-vue-jsx-merge-props": "^2.0.3",
|
|
27
|
-
"babel-plugin-transform-vue-jsx": "^3.7.0",
|
|
28
|
-
"babel-preset-env": "^1.7.0",
|
|
29
|
-
"core-js": "^3.6.5",
|
|
30
|
-
"crypto-js": "^3.1.9-1",
|
|
31
|
-
"dayjs": "^1.11.2",
|
|
32
|
-
"js-md5": "^0.7.3",
|
|
33
|
-
"meixiappmain": "2.0.23",
|
|
34
|
-
"meixicheckgoodstable": "2.0.12",
|
|
35
|
-
"meixicheckstaff": "2.0.13",
|
|
36
|
-
"meixidialogtablecheck": "2.0.11",
|
|
37
|
-
"meixiexpresscheck": "2.0.1",
|
|
38
|
-
"meixihandlerecorde": "0.0.8",
|
|
39
|
-
"meixirequestts": "0.2.2",
|
|
40
|
-
"meixistepbar": "2.0.11",
|
|
41
|
-
"meixiverifyflowinfo": "0.1.0",
|
|
42
|
-
"meixisuperdrawer": "0.3.1",
|
|
43
|
-
"meixigoodstablecontrol": "2.0.1",
|
|
44
|
-
"meixihelpmenu": "2.0.1",
|
|
45
|
-
"meixilayout": "2.0.44",
|
|
46
|
-
"meixisetting": "2.0.1",
|
|
47
|
-
"meixistoretag": "2.0.3",
|
|
48
|
-
"meixiordertypebutton": "2.0.12",
|
|
49
|
-
"meixioacomponent": "2.0.
|
|
50
|
-
"meixitodo": "2.0.1",
|
|
51
|
-
"path": "^0.12.7",
|
|
52
|
-
"register-service-worker": "^1.7.2",
|
|
53
|
-
"v-click-outside": "^3.2.0",
|
|
54
|
-
"vue": "^2.7.10",
|
|
55
|
-
"vue-cropper": "^0.5.8",
|
|
56
|
-
"vue-router": "3.0.2",
|
|
57
|
-
"vuex": "^3.4.0",
|
|
58
|
-
"@vue/cli-plugin-babel": "~4.5.19",
|
|
59
|
-
"@vue/cli-plugin-eslint": "~4.5.19",
|
|
60
|
-
"@vue/cli-plugin-router": "~4.5.13",
|
|
61
|
-
"@vue/cli-plugin-vuex": "~4.5.13",
|
|
62
|
-
"@vue/cli-service": "~4.5.19",
|
|
63
|
-
"@vue/eslint-config-standard": "^5.1.2",
|
|
64
|
-
"@vuepress/plugin-pwa": "^1.9.7",
|
|
65
|
-
"babel-eslint": "^10.1.0",
|
|
66
|
-
"babel-plugin-component": "^1.1.1",
|
|
67
|
-
"eslint-plugin-node": "^11.1.0",
|
|
68
|
-
"eslint-plugin-standard": "^4.0.0",
|
|
69
|
-
"vue-template-compiler": "^2.7.10",
|
|
70
|
-
"husky": "^8.0.2",
|
|
71
|
-
"prettier": "^2.8.1",
|
|
72
|
-
"@vue/eslint-config-prettier": "^7.0.0",
|
|
73
|
-
"commitizen": "^4.2.6",
|
|
74
|
-
"eslint": "^8.30.0",
|
|
75
|
-
"eslint-config-standard-with-typescript": "^24.0.0",
|
|
76
|
-
"eslint-plugin-import": "^2.26.0",
|
|
77
|
-
"eslint-plugin-n": "^15.6.0",
|
|
78
|
-
"eslint-plugin-promise": "^6.1.1",
|
|
79
|
-
"eslint-plugin-vue": "^9.8.0",
|
|
80
|
-
"@commitlint/cli": "^17.3.0",
|
|
81
|
-
"@commitlint/config-conventional": "^17.3.0",
|
|
82
|
-
"@commitlint/cz-commitlint": "^17.3.0",
|
|
83
|
-
"cz-conventional-changelog": "^3.3.0",
|
|
84
|
-
"lint-staged": "^13.1.0",
|
|
85
|
-
"tdesign-vue": "^1.10.5-naruto"
|
|
86
|
-
},
|
|
87
|
-
"devDependencies": {
|
|
88
|
-
"less": "^3.13.1",
|
|
89
|
-
"less-loader": "^5.0.0",
|
|
90
|
-
"style-resources-loader": "^1.5.0",
|
|
91
|
-
"svg-sprite-loader": "4.1.3"
|
|
92
|
-
},
|
|
93
|
-
"browserslist": [
|
|
94
|
-
"> 1%",
|
|
95
|
-
"last 2 versions",
|
|
96
|
-
"not dead"
|
|
97
|
-
]
|
|
98
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "newoaadmin",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"private": true,
|
|
5
|
+
"scripts": {
|
|
6
|
+
"serve": "vue-cli-service serve",
|
|
7
|
+
"build:beta": "vue-cli-service build --mode beta",
|
|
8
|
+
"build:testing": "vue-cli-service build --mode testing",
|
|
9
|
+
"build:pre": "vue-cli-service build --mode pre",
|
|
10
|
+
"build:prod": "vue-cli-service build --mode prod",
|
|
11
|
+
"rollupBuild": "sudo meixirollupbuild -b / --pathTarget src/pages/ordermanage/oaorder/index.js-lib/oaOrderIndex.umd.js",
|
|
12
|
+
"lint": "eslint --ext .js,.vue,.ts,.tsx src",
|
|
13
|
+
"fix:lint": "eslint --fix --ext .js,.vue,.ts,.tsx src",
|
|
14
|
+
"prepare": "husky install",
|
|
15
|
+
"lint:lint-staged": "lint-staged",
|
|
16
|
+
"git": "npm run fix:lint && git add . && cz",
|
|
17
|
+
"commit": "cz"
|
|
18
|
+
},
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"@babel/plugin-proposal-optional-chaining": "^7.18.9",
|
|
21
|
+
"@wangeditor/editor": "^5.1.14",
|
|
22
|
+
"@wangeditor/editor-for-vue": "^1.0.2",
|
|
23
|
+
"@wangeditor/plugin-md": "^1.0.0",
|
|
24
|
+
"async_hooks": "^1.0.0",
|
|
25
|
+
"axios": "^0.26.0",
|
|
26
|
+
"babel-helper-vue-jsx-merge-props": "^2.0.3",
|
|
27
|
+
"babel-plugin-transform-vue-jsx": "^3.7.0",
|
|
28
|
+
"babel-preset-env": "^1.7.0",
|
|
29
|
+
"core-js": "^3.6.5",
|
|
30
|
+
"crypto-js": "^3.1.9-1",
|
|
31
|
+
"dayjs": "^1.11.2",
|
|
32
|
+
"js-md5": "^0.7.3",
|
|
33
|
+
"meixiappmain": "2.0.23",
|
|
34
|
+
"meixicheckgoodstable": "2.0.12",
|
|
35
|
+
"meixicheckstaff": "2.0.13",
|
|
36
|
+
"meixidialogtablecheck": "2.0.11",
|
|
37
|
+
"meixiexpresscheck": "2.0.1",
|
|
38
|
+
"meixihandlerecorde": "0.0.8",
|
|
39
|
+
"meixirequestts": "0.2.2",
|
|
40
|
+
"meixistepbar": "2.0.11",
|
|
41
|
+
"meixiverifyflowinfo": "0.1.0",
|
|
42
|
+
"meixisuperdrawer": "0.3.1",
|
|
43
|
+
"meixigoodstablecontrol": "2.0.1",
|
|
44
|
+
"meixihelpmenu": "2.0.1",
|
|
45
|
+
"meixilayout": "2.0.44",
|
|
46
|
+
"meixisetting": "2.0.1",
|
|
47
|
+
"meixistoretag": "2.0.3",
|
|
48
|
+
"meixiordertypebutton": "2.0.12",
|
|
49
|
+
"meixioacomponent": "2.0.47",
|
|
50
|
+
"meixitodo": "2.0.1",
|
|
51
|
+
"path": "^0.12.7",
|
|
52
|
+
"register-service-worker": "^1.7.2",
|
|
53
|
+
"v-click-outside": "^3.2.0",
|
|
54
|
+
"vue": "^2.7.10",
|
|
55
|
+
"vue-cropper": "^0.5.8",
|
|
56
|
+
"vue-router": "3.0.2",
|
|
57
|
+
"vuex": "^3.4.0",
|
|
58
|
+
"@vue/cli-plugin-babel": "~4.5.19",
|
|
59
|
+
"@vue/cli-plugin-eslint": "~4.5.19",
|
|
60
|
+
"@vue/cli-plugin-router": "~4.5.13",
|
|
61
|
+
"@vue/cli-plugin-vuex": "~4.5.13",
|
|
62
|
+
"@vue/cli-service": "~4.5.19",
|
|
63
|
+
"@vue/eslint-config-standard": "^5.1.2",
|
|
64
|
+
"@vuepress/plugin-pwa": "^1.9.7",
|
|
65
|
+
"babel-eslint": "^10.1.0",
|
|
66
|
+
"babel-plugin-component": "^1.1.1",
|
|
67
|
+
"eslint-plugin-node": "^11.1.0",
|
|
68
|
+
"eslint-plugin-standard": "^4.0.0",
|
|
69
|
+
"vue-template-compiler": "^2.7.10",
|
|
70
|
+
"husky": "^8.0.2",
|
|
71
|
+
"prettier": "^2.8.1",
|
|
72
|
+
"@vue/eslint-config-prettier": "^7.0.0",
|
|
73
|
+
"commitizen": "^4.2.6",
|
|
74
|
+
"eslint": "^8.30.0",
|
|
75
|
+
"eslint-config-standard-with-typescript": "^24.0.0",
|
|
76
|
+
"eslint-plugin-import": "^2.26.0",
|
|
77
|
+
"eslint-plugin-n": "^15.6.0",
|
|
78
|
+
"eslint-plugin-promise": "^6.1.1",
|
|
79
|
+
"eslint-plugin-vue": "^9.8.0",
|
|
80
|
+
"@commitlint/cli": "^17.3.0",
|
|
81
|
+
"@commitlint/config-conventional": "^17.3.0",
|
|
82
|
+
"@commitlint/cz-commitlint": "^17.3.0",
|
|
83
|
+
"cz-conventional-changelog": "^3.3.0",
|
|
84
|
+
"lint-staged": "^13.1.0",
|
|
85
|
+
"tdesign-vue": "^1.10.5-naruto"
|
|
86
|
+
},
|
|
87
|
+
"devDependencies": {
|
|
88
|
+
"less": "^3.13.1",
|
|
89
|
+
"less-loader": "^5.0.0",
|
|
90
|
+
"style-resources-loader": "^1.5.0",
|
|
91
|
+
"svg-sprite-loader": "4.1.3"
|
|
92
|
+
},
|
|
93
|
+
"browserslist": [
|
|
94
|
+
"> 1%",
|
|
95
|
+
"last 2 versions",
|
|
96
|
+
"not dead"
|
|
97
|
+
]
|
|
98
|
+
}
|