()
| 531 | let routeOverrides = { ...initialRouteOverrides }; |
| 532 | const configChangeSubscribers = new Set<(value: void) => void>(); |
| 533 | const notifyConfigChanged = () => { |
| 534 | for (const push of configChangeSubscribers) { |
| 535 | push(undefined); |
| 536 | } |
| 537 | }; |
| 538 | let globalSecretsState: Secret[] = [...globalSecrets]; |
| 539 | const getInjectedGlobalSecretKeys = (projectPath: string): string[] => { |
| 540 | const normalizedProjectPath = projectPath.trim(); |
no test coverage detected