@elizaos/config 1.6.5-alpha.18 → 1.6.5-alpha.19

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/dist/index.js +6 -2
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -212678,13 +212678,17 @@ Referenced from: ${ctx.filePath || ctx.name}`;
212678
212678
  if (!allConfig) {
212679
212679
  throw new TypeError("Missing parameter 'allConfig' in FlatCompat constructor.");
212680
212680
  }
212681
- return allConfig;
212681
+ const config = { ...allConfig };
212682
+ delete config.name;
212683
+ return config;
212682
212684
  },
212683
212685
  getEslintRecommendedConfig() {
212684
212686
  if (!recommendedConfig) {
212685
212687
  throw new TypeError("Missing parameter 'recommendedConfig' in FlatCompat constructor.");
212686
212688
  }
212687
- return recommendedConfig;
212689
+ const config = { ...recommendedConfig };
212690
+ delete config.name;
212691
+ return config;
212688
212692
  }
212689
212693
  });
212690
212694
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@elizaos/config",
3
3
  "description": "Shared configuration for ElizaOS projects and plugins",
4
- "version": "1.6.5-alpha.18",
4
+ "version": "1.6.5-alpha.19",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",
@@ -51,5 +51,5 @@
51
51
  "publishConfig": {
52
52
  "access": "public"
53
53
  },
54
- "gitHead": "0651ddedad41f31c399ab72878cec84b9fb4877b"
54
+ "gitHead": "4e6fb8e8b3f2887bd775c8197e98d1fc1e2af9b5"
55
55
  }