(taskData)
| 159 | return null; |
| 160 | }, |
| 161 | async switchToVersion(taskData) { |
| 162 | const { version } = taskData; |
| 163 | |
| 164 | console.log(`Switching CMS to version '${version}'`); |
| 165 | |
| 166 | await switchVersion(version); |
| 167 | |
| 168 | return null; |
| 169 | }, |
| 170 | async updateConfig(config) { |
| 171 | await updateConfig(current => { |
| 172 | merge(current, config); |
nothing calls this directly
no test coverage detected