(cwd, filenames)
| 157 | } |
| 158 | |
| 159 | async getFiles(cwd, filenames) { |
| 160 | const fullPaths = this.resolveFilenames(cwd, filenames) |
| 161 | const files = await Promise.all(fullPaths.map(fp => this.sfs.getFusedFile(fp))) |
| 162 | return files |
| 163 | } |
| 164 | |
| 165 | async buildCommand(cwd, filenames) { |
| 166 | if (filenames && filenames.length) { |
no test coverage detected