meixifrontserve 0.0.3 → 0.0.5
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/config/package.json
CHANGED
|
@@ -47,33 +47,30 @@
|
|
|
47
47
|
"vue-router": "3.0.2",
|
|
48
48
|
"vuedraggable": "^2.24.3",
|
|
49
49
|
"vuex": "^3.4.0",
|
|
50
|
-
"meixioacomponent": "^0.9.
|
|
50
|
+
"meixioacomponent": "^0.9.70"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@
|
|
54
|
-
"@vue/cli-plugin-
|
|
55
|
-
"@vue/cli-plugin-
|
|
56
|
-
"@vue/cli-plugin-router": "~5.0.0",
|
|
53
|
+
"@vue/cli-plugin-babel": "~4.5.18",
|
|
54
|
+
"@vue/cli-plugin-eslint": "~4.5.18",
|
|
55
|
+
"@vue/cli-plugin-router": "~4.5.13",
|
|
57
56
|
"@vue/cli-plugin-vuex": "~4.5.13",
|
|
58
57
|
"@vue/cli-service": "~4.5.18",
|
|
59
58
|
"@vue/eslint-config-standard": "^5.1.2",
|
|
60
59
|
"@vuepress/plugin-pwa": "^1.9.7",
|
|
61
60
|
"babel-eslint": "^10.1.0",
|
|
62
61
|
"babel-plugin-component": "^1.1.1",
|
|
63
|
-
"eslint": "^
|
|
62
|
+
"eslint": "^6.7.2",
|
|
64
63
|
"eslint-plugin-import": "^2.20.2",
|
|
65
64
|
"eslint-plugin-node": "^11.1.0",
|
|
66
65
|
"eslint-plugin-promise": "^4.2.1",
|
|
67
66
|
"eslint-plugin-standard": "^4.0.0",
|
|
68
|
-
"eslint-plugin-vue": "^
|
|
67
|
+
"eslint-plugin-vue": "^6.2.2",
|
|
69
68
|
"less": "^3.13.1",
|
|
70
69
|
"less-loader": "^5.0.0",
|
|
71
70
|
"style-resources-loader": "^1.5.0",
|
|
72
71
|
"svg-sprite-loader": "4.1.3",
|
|
73
|
-
"
|
|
74
|
-
|
|
75
|
-
"vue-loader": "^17.0.1",
|
|
76
|
-
"vue-template-compiler": "^2.7.14"
|
|
72
|
+
"vue-template-compiler": "^2.7.5"
|
|
73
|
+
|
|
77
74
|
},
|
|
78
75
|
"eslintConfig": {
|
|
79
76
|
"root": true,
|
package/package.json
CHANGED
|
@@ -146,7 +146,15 @@ class EnvByServerController extends ServerController {
|
|
|
146
146
|
|
|
147
147
|
|
|
148
148
|
onRunServe() {
|
|
149
|
-
|
|
149
|
+
console.log(`
|
|
150
|
+
:+::+:: :+:::+: ##### #####
|
|
151
|
+
:+: :+: :+: :+: :+: :+:
|
|
152
|
+
+:+ +:+ +:+ +:+ +:+ +:+
|
|
153
|
+
+#+ +#+#+ +#+ +#++#+
|
|
154
|
+
+#+ +#+ +#+ +#+ +#+
|
|
155
|
+
#+# #+# #+# #+# #+#
|
|
156
|
+
### ### ############ #####`)
|
|
157
|
+
console.error('即将开始下载依赖!')
|
|
150
158
|
exec('npm install', async (error, stdout, stderr) => {
|
|
151
159
|
if (!error) {
|
|
152
160
|
shell.exec('npm run serve', (error, stdout, stderr) => {
|
|
@@ -156,7 +164,6 @@ class EnvByServerController extends ServerController {
|
|
|
156
164
|
console.error('依赖下载失败!')
|
|
157
165
|
}
|
|
158
166
|
});
|
|
159
|
-
|
|
160
167
|
}
|
|
161
168
|
|
|
162
169
|
getSystemUrl() {
|