(filePath, substitutions)
| 10 | } |
| 11 | |
| 12 | export async function processHandlebarFile (filePath, substitutions) { |
| 13 | return processFile(filePath, (rawSource) => processHandlebarTemplate(rawSource, substitutions)) |
| 14 | } |
| 15 | |
| 16 | function processHandlebarTemplate (source, substitutions) { |
| 17 | try { |
no test coverage detected