Update helpers.ts
f9a27516
fix an error
1 file(s) · +1 −1
fix an error
| 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 |