fix(deps): 修复 npm install postinstall 阶段 ajv-keywords 兼容性错误

将 npm overrides 中的 ajv 版本范围从 >=6.14.0 改为 ^6.14.0,
确保 electron-builder 依赖链使用 ajv v6,避免在 Node.js v22 上
@develar/schema-utils 加载 ajv-keywords 时访问 formats 返回 undefined 的问题。

Fixes #588
This commit is contained in:
hicccc77
2026-03-30 11:04:44 +08:00
parent 93b55fe370
commit 40342ca824

View File

@@ -194,6 +194,6 @@
"picomatch": "^4.0.4",
"tar": "^7.5.13",
"immutable": "^5.1.5",
"ajv": ">=6.14.0"
"ajv": "^6.14.0"
}
}