mm_config 1.0.8 → 1.1.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.
Files changed (3) hide show
  1. package/base.js +1 -0
  2. package/index.js +1 -0
  3. package/package.json +2 -2
package/base.js CHANGED
@@ -27,6 +27,7 @@ module.exports = function(_config, _jsonFile) {
27
27
  if (_jsonFile) {
28
28
  writeFileSync(_jsonFile, JSON.stringify(obj, null, 4), 'utf-8');
29
29
  }
30
+ return true
30
31
  }
31
32
  });
32
33
  }
package/index.js CHANGED
@@ -18,6 +18,7 @@ module.exports = function(_config, _jsonFile) {
18
18
  if (_jsonFile) {
19
19
  _jsonFile.saveJson(obj);
20
20
  }
21
+ return true
21
22
  }
22
23
  });
23
24
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mm_config",
3
- "version": "1.0.8",
3
+ "version": "1.1.0",
4
4
  "description": "这是超级美眉配置同步器,用于更改配置同步保存为JSON文件",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -24,6 +24,6 @@
24
24
  "homepage": "https://github.com/qiuwenwu/mm_config#readme",
25
25
  "dependencies": {
26
26
  "json5": "^2.2.3",
27
- "mm_expand": "^1.5.4"
27
+ "mm_expand": "^1.5.9"
28
28
  }
29
29
  }