Compare commits

..
Author SHA1 Message Date
velma 0629361ca3 docs: propose native Claude WebUI bridge
ci/woodpecker/pr/ci Pipeline was successful
2026-08-09 05:08:27 -05:00
2 changed files with 1 additions and 13 deletions
+1 -3
View File
@@ -8,11 +8,9 @@ WORKDIR /app
COPY pnpm-workspace.yaml pnpm-lock.yaml package.json ./ COPY pnpm-workspace.yaml pnpm-lock.yaml package.json ./
COPY apps/web/package.json ./apps/web/ COPY apps/web/package.json ./apps/web/
COPY packages/ ./packages/ COPY packages/ ./packages/
# the root prepare script runs scripts/install-hooks.mjs on install
COPY scripts/ ./scripts/
RUN pnpm install --frozen-lockfile RUN pnpm install --frozen-lockfile
COPY . . COPY . .
RUN pnpm --filter @mosaicstack/web build RUN pnpm --filter @mosaic/web build
FROM base AS runner FROM base AS runner
WORKDIR /app WORKDIR /app
-10
View File
@@ -75,16 +75,6 @@ export async function installHooks({
} = {}) { } = {}) {
if (disabled) return; if (disabled) return;
try {
await execFileAsync('git', ['--version']);
} catch (error) {
if (error.code === 'ENOENT') {
console.warn('git not found; skipping hook installation');
return;
}
throw error;
}
const huskyDir = path.join(root, '.husky'); const huskyDir = path.join(root, '.husky');
const active = path.join(huskyDir, '_'); const active = path.join(huskyDir, '_');
const nonce = `${Date.now()}-${process.pid}`; const nonce = `${Date.now()}-${process.pid}`;