()
| 442 | } |
| 443 | |
| 444 | async function prepareWebDist() { |
| 445 | if (!skipWebBuild || !(await fileExists(webDistIndex))) { |
| 446 | await run(npmCommand, ['run', 'build:nocheck', '--workspace', '@zennotes/web'], { |
| 447 | shell: process.platform === 'win32' |
| 448 | }) |
| 449 | } |
| 450 | await run(process.execPath, [syncWebDistScript]) |
| 451 | } |
| 452 | |
| 453 | async function buildGoServer(outputPath) { |
| 454 | await run('go', ['build', '-trimpath', '-o', outputPath, './cmd/zennotes-server'], { |
no test coverage detected