* Copy file from template directory.
(from, to)
| 111 | */ |
| 112 | |
| 113 | function copyTemplate (from, to) { |
| 114 | write(to, fs.readFileSync(path.join(TEMPLATE_DIR, from), 'utf-8')) |
| 115 | } |
| 116 | |
| 117 | /** |
| 118 | * Copy multiple files from template directory. |
no test coverage detected