()
| 15 | } |
| 16 | |
| 17 | async function buildMain() { |
| 18 | console.log(Chalk.blueBright("Building main...")) |
| 19 | |
| 20 | const mainPath = Path.join(__dirname, "..", "src", "main") |
| 21 | return await compileTs(mainPath) |
| 22 | } |
| 23 | |
| 24 | FileSystem.rmSync(Path.join(__dirname, "..", "build"), { |
| 25 | recursive: true, |