PrintFileStart prints the file being processed
(inputPath, outputPath string)
| 149 | |
| 150 | // PrintFileStart prints the file being processed |
| 151 | func (b *BuildOutput) PrintFileStart(inputPath, outputPath string) { |
| 152 | b.currentFile = inputPath |
| 153 | |
| 154 | input := styleFileInput.Render(inputPath) |
| 155 | arrow := styleMuted.Render("→") |
| 156 | output := styleFileOutput.Render(outputPath) |
| 157 | |
| 158 | fmt.Printf(" %s %s %s\n", input, arrow, output) |
| 159 | fmt.Println() |
| 160 | } |
| 161 | |
| 162 | // Step represents a build step status |
| 163 | type Step struct { |