Merge main into refactor/frontend

- Merge PR #162: cross-platform dev script (init.mjs)
- Updated init.mjs to reference apps/ui instead of apps/app
- Updated root package.json scripts to use apps/ui workspace

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Kacper
2025-12-18 14:46:23 +01:00
3 changed files with 3171 additions and 1351 deletions

View File

@@ -8,7 +8,7 @@
],
"scripts": {
"postinstall": "node -e \"const fs=require('fs');if(process.platform==='darwin'){['darwin-arm64','darwin-x64'].forEach(a=>{const p='node_modules/node-pty/prebuilds/'+a+'/spawn-helper';if(fs.existsSync(p))fs.chmodSync(p,0o755)})}\"",
"dev": "./init.sh",
"dev": "node init.mjs",
"dev:web": "npm run dev:web --workspace=apps/ui",
"dev:electron": "npm run dev:electron --workspace=apps/ui",
"dev:electron:debug": "npm run dev:electron:debug --workspace=apps/ui",
@@ -34,6 +34,7 @@
"lint:lockfile": "! grep -q 'git+ssh://' package-lock.json || (echo 'Error: package-lock.json contains git+ssh:// URLs. Run: git config --global url.\"https://github.com/\".insteadOf \"git@github.com:\"' && exit 1)"
},
"dependencies": {
"cross-spawn": "^7.0.6"
"cross-spawn": "^7.0.6",
"tree-kill": "^1.2.2"
}
}