cloudbuild 1.0.23 → 1.0.24
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/index.js +2 -0
- package/package.json +3 -3
package/lib/index.js
CHANGED
@@ -81,8 +81,10 @@ class Cloudbuild {
|
|
81
81
|
return new Promise((resolve, reject) => {
|
82
82
|
this.socket.emit('build');
|
83
83
|
this.socket.on('build', msg => {
|
84
|
+
|
84
85
|
const parsedMsg = parseMsg(msg);
|
85
86
|
if (FAILED_CODE.indexOf(parsedMsg.action) >= 0) {
|
87
|
+
console.log(parsedMsg ,ret)
|
86
88
|
log.error(parsedMsg.action, parsedMsg.message);
|
87
89
|
clearTimeout(this.timer);
|
88
90
|
this.socket.disconnect();
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "cloudbuild",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.24",
|
4
4
|
"description": "> TODO: description",
|
5
5
|
"author": "谭孝宇 <mrtan21@126.com>",
|
6
6
|
"homepage": "",
|
@@ -25,10 +25,10 @@
|
|
25
25
|
},
|
26
26
|
"dependencies": {
|
27
27
|
"@starerp-cli-dev/log": "^1.0.9",
|
28
|
-
"@starerp-cli-dev/request": "^1.0.
|
28
|
+
"@starerp-cli-dev/request": "^1.0.24",
|
29
29
|
"inquirer": "^8.1.1",
|
30
30
|
"lodash": "^4.17.21",
|
31
31
|
"socket.io-client": "^2.0.0"
|
32
32
|
},
|
33
|
-
"gitHead": "
|
33
|
+
"gitHead": "bb7f1825557056b80facc5594e0b97ff95928ac1"
|
34
34
|
}
|