mirror of
https://github.com/tiennm99/ccs.git
synced 2026-07-17 10:17:05 +00:00
The docker/ directory was missing from package.json files array, causing all ccs docker commands to fail after npm install with "Missing bundled Docker asset" error. Also add .npmignore exception for docker/*.sh since the blanket *.sh exclusion stripped the entrypoint script. Closes #829
36 lines
384 B
Plaintext
36 lines
384 B
Plaintext
# Development files
|
|
.github/
|
|
.claude/
|
|
tests/
|
|
scripts/
|
|
plans/
|
|
design/
|
|
docs/
|
|
|
|
# Git files
|
|
.git/
|
|
.gitignore
|
|
.gitmodules
|
|
|
|
# Development tools (keep installer scripts and docker entrypoints)
|
|
*.sh
|
|
!installers/*.sh
|
|
!docker/*.sh
|
|
|
|
# Logs and temp
|
|
*.log
|
|
.DS_Store
|
|
|
|
# Build artifacts
|
|
node_modules/
|
|
# npm published artifacts
|
|
*.tgz
|
|
|
|
# Editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS files
|
|
Thumbs.db |