@haluo/util 1.0.28 → 1.0.29

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.
@@ -33,6 +33,8 @@ var SendTracker = /** @class */ (function () {
33
33
  return false;
34
34
  if (reason.includes('g.alicdn.com'))
35
35
  return false;
36
+ if (reason.includes('vendors'))
37
+ return false;
36
38
  return true;
37
39
  };
38
40
  SendTracker.prototype.send = function (data) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@haluo/util",
3
- "version": "1.0.28",
3
+ "version": "1.0.29",
4
4
  "main": "./dist/index.js",
5
5
  "author": "<wanghui@jddmoto.com>",
6
6
  "description": "哈罗摩托工具库",
@@ -15,6 +15,7 @@ class SendTracker {
15
15
  if(reason.includes('log-center.58moto.com')) return false
16
16
  if(reason.includes('s23.cnzz.com')) return false
17
17
  if(reason.includes('g.alicdn.com')) return false
18
+ if(reason.includes('vendors')) return false
18
19
  return true
19
20
  }
20
21
  send(data:any = {}) {