( name: string, files: BuilderInputs, changed: Set<string>, removed: Set<string> )
| 3428 | } |
| 3429 | |
| 3430 | function fileRemoved( |
| 3431 | name: string, |
| 3432 | files: BuilderInputs, |
| 3433 | changed: Set<string>, |
| 3434 | removed: Set<string> |
| 3435 | ): void { |
| 3436 | delete files[name]; |
| 3437 | changed.delete(name); |
| 3438 | removed.add(name); |
| 3439 | } |
| 3440 | |
| 3441 | function needsBlockingBuild(buildMatch: BuildMatch): boolean { |
| 3442 | const { builder } = buildMatch.builderWithPkg; |
no test coverage detected