(replacements: Replacements)
| 42 | } |
| 43 | |
| 44 | withReplacements(replacements: Replacements): TemplateFile { |
| 45 | return new TemplateFile(this.templatePath, this.outputPath, replacements); |
| 46 | } |
| 47 | |
| 48 | withOutputPath(outputPath: string): TemplateFile { |
| 49 | const newOutputPath = isDirectory(outputPath) ? path.join(outputPath, this.baseName) : outputPath; |
no outgoing calls
no test coverage detected