From 30c104f41693f549bce71818c3a860bc5d99eace Mon Sep 17 00:00:00 2001 From: Lilith Date: Tue, 20 Jan 2026 01:37:05 -0800 Subject: [PATCH] =?UTF-8?q?deps-upgrade(dependencies):=20=E2=AC=86?= =?UTF-8?q?=EF=B8=8F=20Update=20minor/patch=20versions=20in=20package.json?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index fd6cf34f5..eb4e6b4c6 100644 --- a/package.json +++ b/package.json @@ -16,9 +16,13 @@ "ci:generate": "npx tsx scripts/generate-gitlab-ci.ts", "ci:local:full": "node scripts/local-ci-full.mjs", "ci:local": "node scripts/ci/local-ci-full.mjs", - "clean:all": "pnpm clean && find services -type d -name 'venv' -o -name 'venv-*' -o -name '.venv' | xargs rm -rf && find . -type d -name 'dist' -not -path './node_modules/*' | xargs rm -rf", - "clean:deep": "pnpm clean:all && rm -rf node_modules/.cache && git gc --prune=now", "clean": "turbo run clean && rm -rf node_modules .turbo .dev-workspace .gitlab-ci-local test-output coverage", + "clean:venv": "find features -type d \\( -name 'venv' -o -name '.venv' -o -name 'venv-*' \\) -exec rm -rf {} + 2>/dev/null || true", + "clean:dist": "find . -type d -name 'dist' -not -path './node_modules/*' -exec rm -rf {} + 2>/dev/null || true", + "clean:all": "pnpm clean && pnpm clean:venv && pnpm clean:dist", + "clean:deep": "pnpm clean:all && rm -rf node_modules/.cache && git gc --prune=now", + "reinstall": "pnpm clean:all && pnpm install", + "reinstall:deep": "pnpm clean:deep && pnpm install", "db:create": "docker exec lilith-postgres psql -U postgres -c \"CREATE DATABASE lilith_api_dev;\" 2>/dev/null || echo 'Database already exists'", "db:drop": "docker exec lilith-postgres psql -U postgres -c \"DROP DATABASE IF EXISTS lilith_api_dev;\"", "db:migrate": "cd @services/webmap-api && pnpm run migration:run",