()
| 10 | const SCRIPTS_DIR = "scripts"; |
| 11 | |
| 12 | const getVersion = (): string => { |
| 13 | const packageJson = JSON.parse(fs.readFileSync("package.json", "utf-8")); |
| 14 | return packageJson.version; |
| 15 | }; |
| 16 | |
| 17 | const copyFiles = (): void => { |
| 18 | const mdFiles = fs.readdirSync(process.cwd()).filter((file) => file.endsWith(".md")); |
no outgoing calls
no test coverage detected