chore: update dev script for parallel TypeScript compilation f2feb652
Pra3t0r5 · 2025-10-12 08:25 1 file(s) · +2 −2
src/installers/rpc.ts +2 −2
32 32
		const serverPkgPath = path.join(projectPath, "server", "package.json");
33 33
		const serverPkg = await fs.readJson(serverPkgPath);
34 34
35 -
		// Update the dev script to include TypeScript compilation
36 -
		serverPkg.scripts.dev = "bun --watch run src/index.ts && tsc --watch";
35 +
		// Update the dev script to include parallel TypeScript compilation
36 +
		serverPkg.scripts.dev = "bun --watch run src/index.ts & tsc --watch";
37 37
38 38
		await fs.writeJson(serverPkgPath, serverPkg, { spaces: 2 });
39 39