()
| 70 | } |
| 71 | |
| 72 | export async function getLocalHotfixesAsOptions(): Promise<Partial<RghOptions>> { |
| 73 | const options: Partial<RghOptions> = {}; |
| 74 | for (const [feature] of await getLocalHotfixes()) { |
| 75 | options[`feature:${feature}`] = false; |
| 76 | } |
| 77 | |
| 78 | return options; |
| 79 | } |
| 80 | |
| 81 | export async function applyStyleHotfixes(style: string): Promise<void> { |
| 82 | if (isDevelopmentVersion() || isEnterprise() || !style) { |
no test coverage detected