Wait on the callbacks, not on what subscribe returns
The bridge awaited source.subscribe(...) and then read a flag onError may
have set. That worked only because quasar returned a promise; it answers void
now, so the flag would be read before the subscription had even been attempted
and a failed subscribe would read as success.
The callbacks are the signal, and the only one correct against both quasar
majors — the range admits either.
Keep the dev-dependency alignment, drop the workspace: protocol
The internal ranges had been rewritten to workspace:^. That resolves inside
this monorepo and nowhere else: every package CI checks out its own repository
alone and runs pnpm install, where the protocol has no workspace to point at
and fails with ERR_PNPM_WORKSPACE_PKG_NOT_FOUND before a single test runs. The
concrete ranges are back; the dev-dependency bumps that came with the same edit
are kept, and now match what the lockfile already resolved.
Changes since v0.2.0.