fix(ci): remove stale workspace-daemon COPY from Dockerfile (#104)

The workspace-daemon/ package was removed in 82c3f70 but the Dockerfile
manifest COPY wasn't cleaned up, so CI/docker builds have been failing
at `COPY workspace-daemon/package.json workspace-daemon/` (fixes #88
pull manifest unknown symptom — no new images could be built/pushed).

Also:
- tsconfig include: `vite.config.js` → `vite.config.ts` (actual file ext)
- tsconfig: drop redundant `baseUrl`.", already implied by `paths` in TS 5

Extracted from #91 to ship the CI unblock independently; the larger
settings-UI portion of that PR stays open for separate review.

Co-authored-by: Eric <eric@outsourc-e.com>
Co-authored-by: ajojotank <ajojotank@users.noreply.github.com>
This commit is contained in:
Eric
2026-04-22 14:32:25 -04:00
committed by GitHub
parent 93202b59a2
commit ffd60931ef
2 changed files with 2 additions and 4 deletions

View File

@@ -15,8 +15,7 @@ RUN corepack enable && apt-get update && apt-get install -y --no-install-recomme
WORKDIR /app WORKDIR /app
# Install deps (cache-friendly: copy only manifests first) # Install deps (cache-friendly: copy only manifests first)
COPY package.json pnpm-lock.yaml* pnpm-workspace.yaml* ./ COPY package.json pnpm-lock.yaml* ./
COPY workspace-daemon/package.json workspace-daemon/
RUN pnpm install --frozen-lockfile RUN pnpm install --frozen-lockfile
# Copy sources and build # Copy sources and build

View File

@@ -4,7 +4,7 @@
"**/*.tsx", "**/*.tsx",
"eslint.config.js", "eslint.config.js",
"prettier.config.js", "prettier.config.js",
"vite.config.js" "vite.config.ts"
], ],
"compilerOptions": { "compilerOptions": {
@@ -27,7 +27,6 @@
"noUnusedParameters": false, "noUnusedParameters": false,
"noFallthroughCasesInSwitch": true, "noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true, "noUncheckedSideEffectImports": true,
"baseUrl": ".",
"paths": { "paths": {
"@/*": ["./src/*"] "@/*": ["./src/*"]
} }