All checks were successful
The .dockerignore was excluding package-lock.json, causing npm ci to fail with "The npm ci command can only install with an existing package-lock.json". Commented out the package-lock.json line in .dockerignore to allow it to be copied into the Docker build context. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
100 lines
1.0 KiB
Plaintext
100 lines
1.0 KiB
Plaintext
# Dependencies
|
|
node_modules
|
|
npm-debug.log
|
|
yarn-error.log
|
|
# package-lock.json is needed for npm ci in Docker builds
|
|
yarn.lock
|
|
pnpm-lock.yaml
|
|
|
|
# Next.js build output
|
|
.next
|
|
out
|
|
dist
|
|
build
|
|
|
|
# Tests
|
|
coverage
|
|
.nyc_output
|
|
**/__tests__
|
|
**/__mocks__
|
|
*.spec.ts
|
|
*.test.ts
|
|
*.spec.tsx
|
|
*.test.tsx
|
|
e2e
|
|
playwright-report
|
|
test-results
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.development
|
|
.env.test
|
|
.env.production
|
|
.env.*.local
|
|
|
|
# IDE
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*.swn
|
|
.DS_Store
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
.github
|
|
|
|
# Documentation
|
|
*.md
|
|
README.md
|
|
docs
|
|
documentation
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
lerna-debug.log*
|
|
.pnpm-debug.log*
|
|
|
|
# Temporary files
|
|
tmp
|
|
temp
|
|
*.tmp
|
|
*.bak
|
|
*.cache
|
|
.turbo
|
|
|
|
# Docker
|
|
Dockerfile
|
|
.dockerignore
|
|
docker-compose*.yml
|
|
|
|
# CI/CD
|
|
.gitlab-ci.yml
|
|
.travis.yml
|
|
Jenkinsfile
|
|
azure-pipelines.yml
|
|
|
|
# Vercel
|
|
.vercel
|
|
|
|
# Other
|
|
.prettierrc
|
|
.prettierignore
|
|
.eslintrc.json
|
|
.eslintignore
|
|
postcss.config.js
|
|
tailwind.config.js
|
|
next-env.d.ts
|
|
tsconfig.tsbuildinfo
|
|
|
|
# Storybook
|
|
storybook-static
|
|
.storybook
|