owl-cli 6.52.0 → 6.53.0

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.
@@ -248,14 +248,16 @@ function diff(obj1, obj2,parentKeys){
248
248
  diff : v2
249
249
  });
250
250
  }
251
- else{
252
- result.push({
253
- type:'added',
254
- fieldKey : k2,
255
- parentKeys: JSON.stringify(parentKeys),
256
- oldv:null,
257
- newv:v2
258
- });
251
+ else {
252
+ if (v2 != null && v2 != '') {
253
+ result.push({
254
+ type: 'added',
255
+ fieldKey: k2,
256
+ parentKeys: JSON.stringify(parentKeys),
257
+ oldv: null,
258
+ newv: v2
259
+ });
260
+ }
259
261
  }
260
262
  }
261
263
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "owl-cli",
3
- "version": "6.52.0",
3
+ "version": "6.53.0",
4
4
  "main": "index.js",
5
5
  "preferGlobal": true,
6
6
  "bin": {