chore: bump to v2.0.5 with deploy scripts and prepack integration

Adds deploy convenience scripts, wires flatten-standalone-deps into web:prepack, and updates test:cli to include the new test file.
This commit is contained in:
kumarabhirup 2026-03-04 19:06:56 -08:00
parent 8847e44854
commit cceeccb900
No known key found for this signature in database
GPG Key ID: DB7CA2289CAB0167
2 changed files with 9 additions and 5 deletions

View File

@ -1,6 +1,6 @@
{
"name": "denchclaw",
"version": "2.0.4",
"version": "2.0.5",
"description": "AI-powered CRM platform with multi-channel agent gateway, DuckDB workspace, and knowledge management",
"keywords": [],
"homepage": "https://github.com/openclaw/openclaw#readme",
@ -45,12 +45,16 @@
"prepack": "pnpm build && pnpm web:build && pnpm web:prepack",
"start": "node denchclaw.mjs",
"test": "pnpm test:cli && pnpm --dir apps/web test",
"test:cli": "vitest run --config vitest.unit.config.ts src/cli/run-main.test.ts src/cli/bootstrap-external.test.ts src/cli/bootstrap-external.bootstrap-command.test.ts src/cli/workspace-seed.test.ts src/cli/web-runtime.test.ts src/cli/web-runtime-command.test.ts",
"test:cli": "vitest run --config vitest.unit.config.ts src/cli/run-main.test.ts src/cli/bootstrap-external.test.ts src/cli/bootstrap-external.bootstrap-command.test.ts src/cli/workspace-seed.test.ts src/cli/web-runtime.test.ts src/cli/web-runtime-command.test.ts src/cli/flatten-standalone-deps.test.ts",
"test:web": "pnpm --dir apps/web test",
"web:build": "pnpm --dir apps/web build",
"web:dev": "pnpm --dir apps/web dev",
"web:install": "pnpm --dir apps/web install",
"web:prepack": "cp -r apps/web/public apps/web/.next/standalone/apps/web/public && cp -r apps/web/.next/static apps/web/.next/standalone/apps/web/.next/static"
"web:prepack": "cp -r apps/web/public apps/web/.next/standalone/apps/web/public && cp -r apps/web/.next/static apps/web/.next/standalone/apps/web/.next/static && node scripts/flatten-standalone-deps.mjs",
"deploy": "set -a && source .env && set +a && bash scripts/deploy.sh",
"deploy:major": "set -a && source .env && set +a && bash scripts/deploy.sh --bump major",
"deploy:minor": "set -a && source .env && set +a && bash scripts/deploy.sh --bump minor",
"deploy:patch": "set -a && source .env && set +a && bash scripts/deploy.sh --bump patch"
},
"dependencies": {
"@clack/prompts": "^1.0.1",

View File

@ -1,6 +1,6 @@
{
"name": "dench",
"version": "2.0.4",
"version": "2.0.5",
"description": "Shorthand alias for denchclaw — AI-powered CRM platform CLI",
"license": "MIT",
"repository": {
@ -16,7 +16,7 @@
],
"type": "module",
"dependencies": {
"denchclaw": "^2.0.4"
"denchclaw": "^2.0.5"
},
"engines": {
"node": ">=22.12.0"