()
| 119 | } |
| 120 | |
| 121 | export function createShellBuildConfig() { |
| 122 | return createBundleConfig({ |
| 123 | entryName: "shell", |
| 124 | entry: "./shell/src/main.jsx", |
| 125 | outDir: path.join(dashboardRoot, "shell/dist"), |
| 126 | filename: "shell.js", |
| 127 | }); |
| 128 | } |
| 129 | |
| 130 | export function createPluginBuildConfig(dir) { |
| 131 | return createBundleConfig({ |
no test coverage detected