Merge pull request #5 from Mrahmani71/patch-1 872b0a86
Update helpers.ts
Steve Simkins · 2025-06-10 09:36 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