Updated outcomesNeedingHitLocation array to only include outcomes that trigger defensive plays or advancement decisions. Before (11 outcomes): - GROUNDOUT, FLYOUT, LINEOUT ✅ - SINGLE_1, SINGLE_2, SINGLE_UNCAPPED ❌ (too broad) - DOUBLE_2, DOUBLE_3, DOUBLE_UNCAPPED ❌ (too broad) - TRIPLE ❌ (too broad) - ERROR ✅ After (6 outcomes): - GROUNDOUT (all groundouts) - FLYOUT (all flyouts) - LINEOUT (all lineouts) - SINGLE_UNCAPPED (decision tree hits) - DOUBLE_UNCAPPED (decision tree hits) - ERROR (defensive plays) Rationale: Standard hits (SINGLE_1, SINGLE_2, DOUBLE_2, etc.) have fixed runner advancement and don't need hit location selection. Session 1 Part 2 - Change #5 complete Part of cleanup work from demo review 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> |
||
|---|---|---|
| .. | ||
| .claude | ||
| app | ||
| assets/css | ||
| components | ||
| composables | ||
| coverage | ||
| layouts | ||
| middleware | ||
| pages | ||
| plugins | ||
| public | ||
| store | ||
| tests | ||
| types | ||
| .dockerignore | ||
| .gitignore | ||
| app.vue | ||
| CLAUDE.md | ||
| Dockerfile | ||
| nuxt.config.ts | ||
| package-lock.json | ||
| package.json | ||
| README.md | ||
| tailwind.config.js | ||
| tsconfig.json | ||
| vitest.config.ts | ||
Nuxt Minimal Starter
Look at the Nuxt documentation to learn more.
Setup
Make sure to install dependencies:
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun install
Development Server
Start the development server on http://localhost:3000:
# npm
npm run dev
# pnpm
pnpm dev
# yarn
yarn dev
# bun
bun run dev
Production
Build the application for production:
# npm
npm run build
# pnpm
pnpm build
# yarn
yarn build
# bun
bun run build
Locally preview production build:
# npm
npm run preview
# pnpm
pnpm preview
# yarn
yarn preview
# bun
bun run preview
Check out the deployment documentation for more information.