(config: BuildConfig)
| 12 | * because it generates smaller code that minifies better. |
| 13 | */ |
| 14 | export function submoduleCore(config: BuildConfig) { |
| 15 | if (config.dev) { |
| 16 | return submoduleCoreDev(config); |
| 17 | } |
| 18 | return submoduleCoreProd(config); |
| 19 | } |
| 20 | |
| 21 | async function submoduleCoreProd(config: BuildConfig) { |
| 22 | const input: InputOptions = { |
no test coverage detected
searching dependent graphs…