()
| 60 | }); |
| 61 | |
| 62 | export async function getLocalHotfixes(): Promise<HotfixStorage> { |
| 63 | // To facilitate debugging, ignore hotfixes during development. |
| 64 | // Change the version in manifest.json to test hotfixes |
| 65 | if (isDevelopmentVersion()) { |
| 66 | return []; |
| 67 | } |
| 68 | |
| 69 | return await brokenFeatures.get() ?? []; |
| 70 | } |
| 71 | |
| 72 | export async function getLocalHotfixesAsOptions(): Promise<Partial<RghOptions>> { |
| 73 | const options: Partial<RghOptions> = {}; |
no test coverage detected