()
| 206 | } |
| 207 | |
| 208 | export async function buildShell() { |
| 209 | await runRsbuildConfig(createShellBuildConfig()); |
| 210 | await fs.copyFile( |
| 211 | path.join(dashboardRoot, "shell/src/styles.css"), |
| 212 | path.join(dashboardRoot, "shell/dist/shell.css"), |
| 213 | ); |
| 214 | } |
| 215 | |
| 216 | export async function buildPlugin( |
| 217 | dir, |
no test coverage detected