owl-cli 6.14.0 → 6.16.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.
@@ -74,11 +74,10 @@ function diff(obj1, obj2,parentKey){
74
74
  var result = []
75
75
  var keys1 = Object.keys(obj1);
76
76
  var keys2 = Object.keys(obj2);
77
- key1s.sort();
78
- key2s.sort();
77
+ keys1.sort();
78
+ keys2.sort();
79
79
 
80
- //找到减少的
81
- 和发生了变化的
80
+ //找到减少的和发生了变化的
82
81
  for(var i=0; i<keys1.length; i++){
83
82
  var k1 = keys1[i];
84
83
  var v1 = obj1[k1];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "owl-cli",
3
- "version": "6.14.0",
3
+ "version": "6.16.0",
4
4
  "main": "index.js",
5
5
  "preferGlobal": true,
6
6
  "bin": {