(dir: string)
| 16 | } |
| 17 | |
| 18 | export async function runUserScripts(dir: string): Promise<void> { |
| 19 | const buildScriptPath = path.join(dir, 'build.sh'); |
| 20 | const buildScriptExists = fs.existsSync(buildScriptPath); |
| 21 | |
| 22 | if (buildScriptExists) { |
| 23 | debug('Running `build.sh`'); |
| 24 | await runShellScript(buildScriptPath); |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | export async function gatherExtraFiles( |
| 29 | globMatcher: string | string[] | undefined, |
no test coverage detected