|
@@ -38,13 +38,13 @@ function runTask() {
|
38
|
38
|
const isNodeVersionLt17 = parseInt(process.version) < 17;
|
39
|
39
|
const execStr = isNodeVersionLt17 ? 'npm run build' : 'npm run build:17';
|
40
|
40
|
if (shell.exec(execStr).code == 0) {
|
41
|
|
- if (shell.exec(`find dist -name '*.js' -print0 | xargs -0 gzip -k`).code == 0) {
|
42
|
|
- if (shell.exec(`find dist -name '*.css' -print0 | xargs -0 gzip -k`).code == 0) {
|
|
41
|
+ // if (shell.exec(`find dist -name '*.js' -print0 | xargs -0 gzip -k`).code == 0) {
|
|
42
|
+ // if (shell.exec(`find dist -name '*.css' -print0 | xargs -0 gzip -k`).code == 0) {
|
43
|
43
|
console.log("-----打包成功-----");
|
44
|
44
|
//提交上传
|
45
|
45
|
connectSSh();
|
46
|
|
- }
|
47
|
|
- }
|
|
46
|
+ // }
|
|
47
|
+ // }
|
48
|
48
|
}
|
49
|
49
|
}
|
50
|
50
|
runTask()
|