(p)
| 53 | const lastNoteFile = `${pad(NOTE_COUNT - 1)} - note.md` |
| 54 | |
| 55 | async function fileExists(p) { |
| 56 | try { await access(p, constants.F_OK); return true } catch { return false } |
| 57 | } |
| 58 | |
| 59 | async function prepareBuild() { |
| 60 | if (skipBuild && (await fileExists(desktopOutMain))) return |