@lorrylurui/code-intelligence-mcp 1.1.3 → 1.1.5

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.
@@ -21,8 +21,8 @@ export async function runReindex(options = {}) {
21
21
  let pool = null;
22
22
  if (!dryRun) {
23
23
  if (!mysqlEnabled) {
24
- throw new Error('执行 reindex 写入数据库需要 MYSQL_ENABLED=true。' +
25
- '第三方项目可在 .env 中配置此变量(未配置则使用 MCP Server 本地配置)。');
24
+ throw new Error(`最新!${JSON.stringify(process.env)}执行 reindex 写入数据库需要 MYSQL_ENABLED=true。' +
25
+ '第三方项目可在 .env 中配置此变量(未配置则使用 MCP Server 本地配置)。`);
26
26
  }
27
27
  validateEnv();
28
28
  pool = getMySqlPool();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lorrylurui/code-intelligence-mcp",
3
- "version": "1.1.3",
3
+ "version": "1.1.5",
4
4
  "private": false,
5
5
  "description": "MCP server 提供仓库内可复用代码块(ts/tsx/js/jsx/css/less)的索引和查询能力,支持基于代码上下文的智能推荐。",
6
6
  "type": "module",