|
35 | 35 | "prebuild": "tsx scripts/prebuild.mts && npm run lint", |
36 | 36 | "build": "cross-env NODE_OPTIONS=--max-old-space-size=8192 next build --webpack", |
37 | 37 | "postbuild": "npm run build-sitemap && npm run build-migrate-db", |
| 38 | + "build-migrate-db": "bun run db:migrate", |
| 39 | + "build-sitemap": "tsx ./scripts/buildSitemapIndex/index.ts", |
38 | 40 | "build:analyze": "NODE_OPTIONS=--max-old-space-size=81920 ANALYZE=true next build --webpack", |
39 | 41 | "build:docker": "npm run prebuild && NODE_OPTIONS=--max-old-space-size=8192 DOCKER=true next build --webpack && npm run build-sitemap", |
40 | 42 | "build:electron": "cross-env NODE_OPTIONS=--max-old-space-size=8192 NEXT_PUBLIC_IS_DESKTOP_APP=1 tsx scripts/electronWorkflow/buildNextApp.mts", |
41 | 43 | "build:vercel": "npm run prebuild && cross-env NODE_OPTIONS=--max-old-space-size=6144 next build --webpack && npm run postbuild", |
42 | | - "build-migrate-db": "bun run db:migrate", |
43 | | - "build-sitemap": "tsx ./scripts/buildSitemapIndex/index.ts", |
44 | 44 | "clean:node_modules": "bash -lc 'set -e; echo \"Removing all node_modules...\"; rm -rf node_modules; pnpm -r exec rm -rf node_modules; rm -rf apps/desktop/node_modules; echo \"All node_modules removed.\"'", |
45 | 45 | "db:generate": "drizzle-kit generate && npm run workflow:dbml", |
46 | 46 | "db:migrate": "MIGRATION_DB=1 tsx ./scripts/migrateServerDB/index.ts", |
|
87 | 87 | "start": "next start -p 3210", |
88 | 88 | "stylelint": "stylelint \"src/**/*.{js,jsx,ts,tsx}\" --fix", |
89 | 89 | "test": "npm run test-app && npm run test-server", |
| 90 | + "test-app": "vitest run", |
| 91 | + "test-app:coverage": "vitest --coverage --silent='passed-only'", |
90 | 92 | "test:e2e": "pnpm --filter @lobechat/e2e-tests test", |
91 | 93 | "test:e2e:smoke": "pnpm --filter @lobechat/e2e-tests test:smoke", |
92 | 94 | "test:update": "vitest -u", |
93 | | - "test-app": "vitest run", |
94 | | - "test-app:coverage": "vitest --coverage --silent='passed-only'", |
95 | 95 | "tunnel:cloudflare": "cloudflared tunnel --url http://localhost:3010", |
96 | 96 | "tunnel:ngrok": "ngrok http http://localhost:3011", |
97 | 97 | "type-check": "tsgo --noEmit", |
|
207 | 207 | "@lobehub/icons": "^4.0.2", |
208 | 208 | "@lobehub/market-sdk": "0.29.1", |
209 | 209 | "@lobehub/tts": "^4.0.2", |
210 | | - "@lobehub/ui": "^4.24.0", |
| 210 | + "@lobehub/ui": "^4.25.0", |
211 | 211 | "@modelcontextprotocol/sdk": "^1.25.1", |
212 | 212 | "@neondatabase/serverless": "^1.0.2", |
213 | 213 | "@next/third-parties": "^16.1.1", |
|
0 commit comments