cloudbuild 1.0.23 → 1.0.28

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/lib/index.js +2 -0
  2. 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.23",
3
+ "version": "1.0.28",
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.23",
28
+ "@starerp-cli-dev/request": "^1.0.28",
29
29
  "inquirer": "^8.1.1",
30
30
  "lodash": "^4.17.21",
31
31
  "socket.io-client": "^2.0.0"
32
32
  },
33
- "gitHead": "4f409dc270d101136d3da9308c408fff3fd65fe4"
33
+ "gitHead": "7587d860522d6ea521787df4cb74820cb6fa3d7b"
34
34
  }