(projectRoot, ...parts)
| 24 | } |
| 25 | |
| 26 | function planningDir(projectRoot, ...parts) { |
| 27 | return path.join(projectRoot || process.cwd(), '.planning', ...parts); |
| 28 | } |
| 29 | |
| 30 | function writeJson(filePath, value) { |
| 31 | ensureDir(path.dirname(filePath)); |
no outgoing calls
no test coverage detected