(parentPath)
| 54 | } |
| 55 | |
| 56 | async function directoryNames(parentPath) { |
| 57 | return (await fs.readdir(parentPath, { withFileTypes: true })) |
| 58 | .filter(dirent => dirent.isDirectory()) |
| 59 | .map(dirent => dirent.name); |
| 60 | } |
| 61 | |
| 62 | async function expandExtensionLiquidTemplates(domainName, flavor) { |
| 63 | console.log(`Expanding liquid templates for ${domainName}`); |
no outgoing calls
no test coverage detected