fix(docker): include docker/ assets in npm package

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
This commit is contained in:
Tam Nhu Tran
2026-03-28 09:47:23 -04:00
parent fcc5fad601
commit 50b56600dd
2 changed files with 3 additions and 1 deletions
+2 -1
View File
@@ -12,9 +12,10 @@ docs/
.gitignore
.gitmodules
# Development tools (keep installer scripts)
# Development tools (keep installer scripts and docker entrypoints)
*.sh
!installers/*.sh
!docker/*.sh
# Logs and temp
*.log
+1
View File
@@ -35,6 +35,7 @@
"lib/",
"scripts/",
"config/",
"docker/",
".claude/",
"VERSION",
"README.md",