Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix browser build plugin #6793

Merged
merged 1 commit into from
Oct 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/browser/src/client/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,14 @@ export default defineConfig({
)

const ui = resolve(root, 'ui/dist/client')
const uiEntryPoint = resolve(ui, 'index.html')
const browser = resolve(root, 'browser/dist/client/__vitest__/')

const timeout = setTimeout(
() => console.log('[copy-ui-plugin] Waiting for UI to be built...'),
1000,
)
await waitFor(() => fs.existsSync(ui))
await waitFor(() => fs.existsSync(ui) && fs.existsSync(uiEntryPoint))
clearTimeout(timeout)

const files = globSync(['**/*'], { cwd: ui, expandDirectories: false })
Expand Down
Loading