(base: string)
| 74 | await shell.runCommand('exit', ['0']); |
| 75 | |
| 76 | const readdir = (base: string): Promise<Array<string>> => { |
| 77 | return nodebox.fs.readdir(base).then((paths) => { |
| 78 | return paths.map((path) => `${base}/${path}`); |
| 79 | }); |
| 80 | }; |
| 81 | |
| 82 | // Read the installed packages on the root-level "node_modules", |
| 83 | // assuming that they have been hoisted correctly. |
no test coverage detected