mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-30 06:12:03 +00:00
- Created git-test-repo helper for managing test git repositories - Added 13 integration tests covering: - Worktree operations (create, error handling, non-worktree mode) - Feature execution (status updates, model selection, duplicate prevention) - Auto loop (start/stop, pending features, max concurrency, events) - Error handling (provider errors, continue after failures) - Integration tests use real git operations with temporary repos - All 416 tests passing with 72.65% overall coverage - Service coverage improved: agent-service 58%, auto-mode-service 44%, feature-loader 66% 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
30 lines
1.2 KiB
JSON
30 lines
1.2 KiB
JSON
{
|
|
"name": "automaker",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"workspaces": [
|
|
"apps/*",
|
|
"libs/*"
|
|
],
|
|
"scripts": {
|
|
"dev": "npm run dev --workspace=apps/app",
|
|
"dev:web": "npm run dev:web --workspace=apps/app",
|
|
"dev:electron": "npm run dev:electron --workspace=apps/app",
|
|
"dev:electron:debug": "npm run dev:electron:debug --workspace=apps/app",
|
|
"dev:electron:wsl": "npm run dev:electron:wsl --workspace=apps/app",
|
|
"dev:electron:wsl:gpu": "npm run dev:electron:wsl:gpu --workspace=apps/app",
|
|
"dev:server": "npm run dev --workspace=apps/server",
|
|
"dev:full": "concurrently \"npm run dev:server\" \"npm run dev:web\"",
|
|
"build": "npm run build --workspace=apps/app",
|
|
"build:server": "npm run build --workspace=apps/server",
|
|
"build:electron": "npm run build:electron --workspace=apps/app",
|
|
"start": "npm run start --workspace=apps/app",
|
|
"start:server": "npm run start --workspace=apps/server",
|
|
"lint": "npm run lint --workspace=apps/app",
|
|
"test": "npm run test --workspace=apps/app",
|
|
"test:headed": "npm run test:headed --workspace=apps/app",
|
|
"test:server": "npm run test --workspace=apps/server",
|
|
"dev:marketing": "npm run dev --workspace=apps/marketing"
|
|
}
|
|
}
|