Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import { type CommandDef, defineCommand, runMain } from "citty"; import { $ } from "execa"; import { loadAndGetConfig } from "./config"; import { migrateToLatest, writeMigrationFile } from "./database"; import { printInfo } from "./info"; import { getLogger } from "./log"; import { getManifest, getManifestOrThrow } from "./manifest"; import { printRoutes } from "./print-routes"; import { runSeed } from "./seed"; function getBuiltInCommands({ cwd, // biome-ignore lint/suspicious/noExplicitAny: <explanation> }: { cwd: string }): Record<string, CommandDef<any>> { const log = getLogger("command"); const build = defineCommand({ meta: { name: "build", description: "Type-check, lint and bundle assets", }, run: async () => { log.info("build start"); const config = await loadAndGetConfig(); const now = Date.now(); await Promise.all([ $({ all: true, preferLocal: true, stdout: "inherit", stderr: "inherit", })`biome check --fix .`.then(() => log.info("✓ lint")), $({ all: true, preferLocal: true, stdout: "inherit", stderr: "inherit", })`tsc --noEmit`.then(() => log.info("✓ types")), $({ all: true, preferLocal: true, stdout: "inherit", stderr: "inherit", })`tailwindcss -i ${config.paths.styles} -o ${config.paths.out}/styles.css --content "./app/**/*.{tsx,html,ts} --minify"`.then( () => log.info("✓ styles.css"), ), $({ all: true, preferLocal: true, stdout: "inherit", stderr: "inherit", })`esbuild ${config.paths.assets}/*.ts --bundle --outdir=${config.paths.out} --minify --sourcemap`.then( () => log.info("✓ .ts -> .js"), ), $({ all: true, preferLocal: true, stdout: "inherit", stderr: "inherit", })`cpy --cwd=${config.paths.assets} . \!${config.paths.assets}/styles.css \!${config.paths.assets}/\*.ts ${config.paths.out}`.then( () => log.info("✓ assets"), ), ]); log.info("build took", Date.now() - now, "ms"); }, }); const test = defineCommand({ meta: { name: "test", description: "Run tests", }, args: { watch: { type: "boolean", description: "Run tests in watch mode", default: false, }, }, run: async ({ args }) => { await $({ all: true, preferLocal: true, stdout: "inherit", stderr: "inherit", })`vitest ${args.watch ? "watch" : "run"}`; }, }); const dev = defineCommand({ meta: { name: "dev", description: "Start the local development server", }, run: async () => { const config = await loadAndGetConfig(); await Promise.all([ $({ all: true, preferLocal: true, stdout: "inherit", stderr: "inherit", })`plainstack-dev`, $({ all: true, preferLocal: true, stdout: "inherit", stderr: "inherit", })`tailwindcss -i ${config.paths.styles} -o ${config.paths.out}/styles.css --watch --content "./app/**/*.{tsx,html,ts}"`, $({ all: true, preferLocal: true, stdout: "inherit", stderr: "inherit", })`esbuild ${config.paths.assets}/*.ts --bundle --outdir=${config.paths.out} --sourcemap`, $({ all: true, preferLocal: true, stdout: "inherit", stderr: "inherit", })`chokidar "${config.paths.assets}/**/*" --ignore "${config.paths.assets}/styles.css" --ignore "${config.paths.assets}/*.ts" -c "cpy --cwd=${config.paths.assets} . \!${config.paths.assets}/styles.css \!${config.paths.assets}/\*.ts ${config.paths.out}"`, ]); }, }); const serve = defineCommand({ meta: { name: "serve", description: "Start the production web server", }, run: async () => { const config = await loadAndGetConfig(); const { http } = await getManifestOrThrow(["http"], { config, cwd }); http(); log.info(`⚡️ serving from port ${config.port}`); }, }); const work = defineCommand({ meta: { name: "work", description: "Start background workers", }, args: { parallel: { type: "string", description: "Number of parallel workers to run", default: "1", }, }, run: async ({ args }) => { const parallel = Number.parseInt(args.parallel); await Promise.all( Array.from( { length: parallel }, () => $({ all: true, preferLocal: true, stdout: "inherit", stderr: "inherit", })`plainstack-work`, ), ); }, }); const routes = defineCommand({ meta: { name: "routes", description: "Print all file routes", }, run: async () => { const config = await loadAndGetConfig(); const { http } = await getManifestOrThrow(["http"], { config, cwd }); await printRoutes(await http()); }, }); const migrate = defineCommand({ meta: { name: "migrate", description: "Apply all pending migrations", }, args: { name: { type: "positional", description: "If provided, create migration with the given name", required: false, }, schema: { type: "boolean", description: "If provided, generate a new schema file based on the current database", required: false, }, }, run: async ({ args }) => { const log = getLogger("migrate"); if (args.schema) { const config = await loadAndGetConfig(); process.env.DATABASE_URL = config.dbUrl; log.info( `generate schema file to ${config.paths.schema} with DATABASE_URL=${config.dbUrl}`, ); await $({ all: true, preferLocal: true, stdout: "inherit", stderr: "inherit", })`kysely-codegen --camel-case --dialect sqlite --out-file ${config.paths.schema}`; } else { if (args.name) { await writeMigrationFile(args.name); } else { await migrateToLatest(); const config = await loadAndGetConfig(); process.env.DATABASE_URL = config.dbUrl; log.info( `generate schema file to ${config.paths.schema} with DATABASE_URL=${config.dbUrl}`, ); await $({ all: true, preferLocal: true, stdout: "inherit", stderr: "inherit", })`kysely-codegen --camel-case --dialect sqlite --out-file ${config.paths.schema}`; } } }, }); const seed = defineCommand({ meta: { name: "seed", description: "Run the seeds in seed.ts", }, run: async () => { await runSeed(); }, }); const info = defineCommand({ meta: { name: "info", description: "Print project info", }, run: async () => { const config = await loadAndGetConfig(); const manifest = await getManifest( ["database", "http", "queue", "jobs", "commands"], { config, cwd, }, ); printInfo(manifest); }, }); return { dev, build, test, serve, work, routes, migrate, seed, info, }; } async function getUserSubCommands({ cwd }: { cwd: string }) { const config = await loadAndGetConfig(); const { commands } = await getManifestOrThrow(["commands"], { config, cwd }); return commands; } function getRootCommand({ builtInCommands, cwd, }: { builtInCommands: Record<string, CommandDef>; cwd: string; }) { return defineCommand({ meta: { name: "plainstack", description: "The all-in-one web framework obsessing about velocity 🏎️", }, subCommands: { ...builtInCommands, custom: { meta: { name: "custom", description: "Run a custom command", }, subCommands: () => getUserSubCommands({ cwd }), }, }, }); } export async function runCommand(opts?: { cwd?: string }) { const cwd = opts?.cwd ?? process.cwd(); const builtInCommands = getBuiltInCommands({ cwd }); const rootCommand = getRootCommand({ cwd, builtInCommands, }); await runMain(rootCommand); } export function isCommand(cmd: unknown): cmd is CommandDef { return typeof cmd === "object" && cmd !== null && "run" in cmd; } |