fix: move ajv to dependencies and add .yarnrc.yml for node-modules linker

ajv was in devDependencies but required at runtime by scripts/lib/install/config.js,
causing 'Cannot find module ajv' when running ./install.sh. Also adds .yarnrc.yml
with nodeLinker: node-modules so plain `node` can resolve packages without PnP.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
tae1344
2026-03-27 12:18:44 +09:00
parent 678fb6f0d3
commit fe6a6fc106
3 changed files with 1957 additions and 2 deletions

1
.yarnrc.yml Normal file
View File

@@ -0,0 +1 @@
nodeLinker: node-modules