mm_config 2.1.8 → 2.2.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 (2) hide show
  1. package/index.js +0 -1
  2. package/package.json +4 -4
package/index.js CHANGED
@@ -309,7 +309,6 @@ async function createAsync(file, options = {}, config = {}) {
309
309
  const f = file.fullname();
310
310
  // 检查是否已存在配置
311
311
  if (dict[f]) {
312
- this.log('warn', `Config for file ${f} already exists.`);
313
312
  return dict[f].getAsyncProxy();
314
313
  }
315
314
  const cfg = new Config({ file: f, ...config }, options);
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "mm_config",
3
- "version": "2.1.8",
3
+ "version": "2.2.0",
4
4
  "description": "Super Meimei Configuration Synchronizer - Automatically sync configuration changes to JSON files",
5
- "main": "index.j",
5
+ "main": "index.js",
6
6
  "scripts": {
7
7
  "test": "node test.js",
8
8
  "lint": "eslint index.js",
@@ -44,7 +44,7 @@
44
44
  },
45
45
  "devDependencies": {
46
46
  "eslint": "^9.39.2",
47
- "eslint-plugin-jsdoc": "^61.5.0",
48
- "mm_eslint": "^1.0.6"
47
+ "eslint-plugin-jsdoc": "^62.5.0",
48
+ "mm_eslint": "^1.6.3"
49
49
  }
50
50
  }