(state)
| 163 | } |
| 164 | |
| 165 | function writeState(state) { |
| 166 | if (!fs.existsSync(PLANNING_DIR)) { |
| 167 | fs.mkdirSync(PLANNING_DIR, { recursive: true }); |
| 168 | } |
| 169 | fs.writeFileSync(STATE_PATH, JSON.stringify(state, null, 2), 'utf8'); |
| 170 | } |
| 171 | |
| 172 | // -- Cross-process locking ---------------------------------------------------- |
| 173 |