(filePath, content)
| 15 | } = require('../hooks_src/doc-sync'); |
| 16 | |
| 17 | function write(filePath, content) { |
| 18 | fs.mkdirSync(path.dirname(filePath), { recursive: true }); |
| 19 | fs.writeFileSync(filePath, content, 'utf8'); |
| 20 | } |
| 21 | |
| 22 | function readJsonl(filePath) { |
| 23 | return fs.readFileSync(filePath, 'utf8') |