(value, length)
| 9 | const logFile = path.resolve(process.cwd(), 'dist', 'debug-compilation.log'); |
| 10 | |
| 11 | const pad = (value, length) => |
| 12 | (value.length > length ? value.slice(value.length - length) : value).padEnd( |
| 13 | length |
| 14 | ); |
| 15 | |
| 16 | /** |
| 17 | * Output debugging information when developing changes in this functionality. |