diff --git a/package-lock.json b/package-lock.json index f19cf59..19248af 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@insforge/cli", - "version": "0.1.34", + "version": "0.1.38", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@insforge/cli", - "version": "0.1.34", + "version": "0.1.38", "license": "Apache-2.0", "dependencies": { "@clack/prompts": "^0.9.1", diff --git a/package.json b/package.json index c412ed1..0d6fa2d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,7 @@ { "name": "@insforge/cli", - "version": "0.1.37", + + "version": "0.1.39", "description": "InsForge CLI - Command line tool for InsForge platform", "type": "module", "bin": { diff --git a/src/commands/deployments/deploy.ts b/src/commands/deployments/deploy.ts index ddf8427..ed6878b 100644 --- a/src/commands/deployments/deploy.ts +++ b/src/commands/deployments/deploy.ts @@ -12,7 +12,7 @@ import type { CreateDeploymentResponse, StartDeploymentRequest, DeploymentSchema import { reportCliUsage } from '../../lib/skills.js'; const POLL_INTERVAL_MS = 5_000; -const POLL_TIMEOUT_MS = 120_000; +const POLL_TIMEOUT_MS = 300_000; const EXCLUDE_PATTERNS = [ 'node_modules', @@ -24,6 +24,22 @@ const EXCLUDE_PATTERNS = [ 'build', '.DS_Store', '.insforge', + // IDE and AI agent configs + '.claude', + '.agents', + '.augment', + '.kilocode', + '.kiro', + '.qoder', + '.qwen', + '.roo', + '.trae', + '.windsurf', + '.vercel', + '.turbo', + '.cache', + 'skills', + 'coverage', ]; function shouldExclude(name: string): boolean { @@ -206,7 +222,7 @@ export function registerDeploymentsDeployCommand(deploymentsCmd: Command): void outputJson({ id: result.deploymentId, status: result.deployment?.status ?? 'building', timedOut: true }); } else { clack.log.info(`Deployment ID: ${result.deploymentId}`); - clack.log.warn('Deployment did not finish within 2 minutes.'); + clack.log.warn('Deployment did not finish within 5 minutes.'); clack.log.info(`Check status with: npx @insforge/cli deployments status ${result.deploymentId}`); } }