The CLI source (242 files, ~14k lines) was gitignored during the earlier cli→cli-v2 reorg so only the published npm package carried it. That blocks the GitHub Actions release workflow (release-cli.yml), which clones the repo fresh on each runner and needs the source to compile binaries via `bun build --compile`. Moves the gitignore from root-level to `apps/cli-v2/.gitignore` with only the usual build artefacts excluded (node_modules, dist, .turbo, .cache). Source is now in git at apps/cli-v2/src/. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
79 lines
869 B
Plaintext
79 lines
869 B
Plaintext
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
|
|
# dependencies
|
|
node_modules
|
|
.pnp
|
|
.pnp.js
|
|
|
|
# testing
|
|
coverage
|
|
coverage.json
|
|
|
|
# next.js
|
|
.next/
|
|
out/
|
|
next-env.d.ts
|
|
|
|
# nitro
|
|
.nitro/
|
|
.output/
|
|
|
|
# expo
|
|
.expo/
|
|
expo-env.d.ts
|
|
apps/mobile/.gitignore
|
|
apps/mobile/ios
|
|
apps/mobile/android
|
|
|
|
# wxt
|
|
.wxt
|
|
web-ext.config.ts
|
|
|
|
# production
|
|
build
|
|
|
|
# misc
|
|
.DS_Store
|
|
*.pem
|
|
|
|
# debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
|
|
# local env files
|
|
.env*.local
|
|
|
|
# secrets
|
|
.cli_sync_secret
|
|
|
|
# vercel
|
|
.vercel
|
|
|
|
# typescript
|
|
dist/
|
|
.cache
|
|
|
|
# turbo
|
|
.turbo
|
|
|
|
# content collections
|
|
.content-collections
|
|
|
|
# TTS audio cache
|
|
.claude/audio/
|
|
|
|
# Large voice model files
|
|
.claude/piper-voices/*.onnx
|
|
.mcp.json
|
|
|
|
# Auto Claude data directory
|
|
.auto-claude/
|
|
|
|
# Payload CMS
|
|
apps/web/payload.db
|
|
apps/web/public/media/*
|
|
!apps/web/public/media/.gitkeep
|
|
.env.local
|