| 6 | export const SANDBOX_MENU_ITEMS_FILE = resolvePath(__dirname, './sandbox-menu-items.js'); |
| 7 | |
| 8 | export interface SandboxFileInformation { |
| 9 | key: string; |
| 10 | srcPath: string; |
| 11 | searchKey: string; |
| 12 | name: string; |
| 13 | label: string; |
| 14 | scenarioMenuItems: { |
| 15 | key: number; |
| 16 | description: string; |
| 17 | }[]; |
| 18 | } |
| 19 | |
| 20 | export async function buildSandboxes(srcPaths: string[], chunk: boolean, makeSandboxMenuItemFile: boolean, definedSandboxesPath: string): Promise<string[]> { |
| 21 | const chunkMode = chunk ? 'lazy' : 'eager'; |
nothing calls this directly
no outgoing calls
no test coverage detected