mirror of
https://github.com/saltbo/zpan.git
synced 2026-08-28 15:51:29 +08:00
310e4950b3
Replace pnpm workspace monorepo (packages/server, packages/web, packages/shared) with a flat single-package layout following Hono's pages-stack pattern. Switch from pnpm to npm and from Workers+Assets to CF Pages Functions deployment model. - Move source: packages/server/src/ → server/, packages/web/src/ → src/, packages/shared/src/ → shared/ - Add functions/api/[[route]].ts as CF Pages Functions entry (replaces entry-cloudflare.ts) - Update 22 import paths: server uses relative, web uses @shared/@server aliases - Merge three package.json into one, switch to npm - Update wrangler.toml: remove main/assets (Pages auto-detects functions/ dir) - Add per-directory tsconfig.json for VS Code type resolution - Simplify Dockerfile for flat layout - Fix react-pdf CSS import path (dist/esm/ → dist/) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
15 lines
332 B
TypeScript
15 lines
332 B
TypeScript
import { applyD1Migrations } from 'cloudflare:test'
|
|
import { env } from 'cloudflare:workers'
|
|
|
|
declare module 'cloudflare:workers' {
|
|
interface ProvidedEnv {
|
|
DB: D1Database
|
|
BETTER_AUTH_SECRET: string
|
|
TEST_MIGRATIONS: D1Migration[]
|
|
}
|
|
}
|
|
|
|
beforeAll(async () => {
|
|
await applyD1Migrations(env.DB, env.TEST_MIGRATIONS)
|
|
})
|