(outputPath: string)
| 46 | } |
| 47 | |
| 48 | withOutputPath(outputPath: string): TemplateFile { |
| 49 | const newOutputPath = isDirectory(outputPath) ? path.join(outputPath, this.baseName) : outputPath; |
| 50 | return new TemplateFile(this.templatePath, newOutputPath, this.replacements); |
| 51 | } |
| 52 | |
| 53 | expandTemplate(): string { |
| 54 | const metaTemplatePath = path.join(Constants.META_DIR_PATH, this.templatePath); |
no test coverage detected