(folder = "/", fileSystem = this.sfs)
| 202 | } |
| 203 | |
| 204 | async buildFilesInFolder(folder = "/", fileSystem = this.sfs) { |
| 205 | folder = ensureFolderEndsInSlash(folder) |
| 206 | const files = await fileSystem.getFusedFilesInFolder(folder, ".scroll") |
| 207 | this.log(`Found ${files.length} scroll files in '${folder}'\n`) |
| 208 | return await this.buildFiles(fileSystem, files, folder) |
| 209 | } |
| 210 | |
| 211 | listCommand(cwd) { |
| 212 | return this.findScrollsInDirRecursive(cwd) |
no test coverage detected