({ baseOnly = false } = {})
| 169 | } |
| 170 | |
| 171 | function getConfig({ baseOnly = false } = {}) { |
| 172 | if (baseOnly) { |
| 173 | // decap-cms build |
| 174 | return baseConfig({ target: 'umd' }); |
| 175 | } |
| 176 | return [baseConfig({ target: 'umd' })]; |
| 177 | } |
| 178 | |
| 179 | module.exports = { |
| 180 | getConfig, |
no test coverage detected