Update helpers.ts f9a27516
fix an error
Mohammad RAHMANI · 2025-06-10 15:08 1 file(s) · +1 −1
src/utils/helpers.ts +1 −1
62 62
		const serverPkg = await fs.readJson(serverPkgPath);
63 63
64 64
		// Update the dev script to include TypeScript compilation
65 -
		serverPkg.scripts.dev = "bun --watch run src/index.ts & tsc --watch";
65 +
		serverPkg.scripts.dev = "bun --watch run src/index.ts && tsc --watch";
66 66
67 67
		await fs.writeJson(serverPkgPath, serverPkg, { spaces: 2 });
68 68