(modulePath, config)
| 710 | } |
| 711 | |
| 712 | async function loadPluginFallback(modulePath, config) { |
| 713 | // This function is kept for backwards compatibility but now uses dynamic import |
| 714 | return await loadPluginAsync(modulePath, config) |
| 715 | } |
| 716 | |
| 717 | async function createPlugins(config, options = {}) { |
| 718 | const plugins = {} |
nothing calls this directly
no test coverage detected