deps(devframe): migrate to devframe 0.9.0-beta.7 - #533
Merged
Conversation
Bump the devframe catalog pin from beta.4 to beta.7 and adapt to its upstream breaking changes: - `@devframes/vite`'s `/dev-spa` subpath was renamed to `/single`. - `context.views.buildStaticDirs` now yields a `StaticAssetsSource` (`string | RemoteAssets`) instead of a plain `distDir`, so both the static-build copy step and the standalone dev-server static mount resolve it via `resolveStaticAssetsSource()` first (supporting the new remote-assets CDN back-proxy). - `@devframes/hub/types` dropped `EntriesToObject`/`Thenable` (now re-exported from `devframe/rpc`) and `PartialWithoutId` (now private); `DevframeDiagnosticsDefinition` was replaced by `DevframeDefineDiagnosticsOptions` on `devframe/types`. The kit's public type barrel is updated to match, with `PartialWithoutId` dropped and the tsnapi export snapshot updated accordingly.
@vitejs/devtools
@vitejs/devtools-kit
@vitejs/devtools-oxc
@vitejs/devtools-rolldown
@vitejs/devtools-vite
@vitejs/devtools-vitest
commit: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Bumps the
devframecatalog pin from^0.9.0-beta.4to^0.9.0-beta.7and adapts to the upstream breaking changes landed in between:@devframes/vite: the/dev-spasubpath was renamed to/single(beta.6). Updated the oxc package's Nuxt config import accordingly.devframe/@devframes/hub:context.views.buildStaticDirsnow yields{ baseUrl, source: StaticAssetsSource }(StaticAssetsSource = string | RemoteAssets) instead of a plaindistDirstring, as part of the new remote-assets CDN back-proxy feature (beta.5). Both the static-build copy step (build-static.ts) and the standalone dev-server's static mount (cli-commands.ts) now resolve the source viaresolveStaticAssetsSource()first — copying a local directory as before, or calling.materialize()for a remote source.@devframes/hub/types: droppedEntriesToObject/Thenable(now re-exported fromdevframe/rpcinstead) andPartialWithoutId(now a private, unexported type).DevframeDiagnosticsDefinitionwas replaced byDevframeDefineDiagnosticsOptionsondevframe/types. Updated the kit's public type barrel (packages/kit/src/types/index.ts) to match —PartialWithoutIdis dropped from the kit's public surface (it was unused internally), and the tsnapi export snapshot is updated to reflect this intentional, upstream-driven API change.pnpm lint && pnpm test && pnpm typecheck && pnpm buildall pass.Linked Issues
Additional context
The
PartialWithoutIdandDevToolsDiagnosticsDefinitionremovals are genuine upstream breaking changes (devframe reduced its public API surface for 0.9), not accidental — neither was used internally in this repo, only re-exported for downstream consumers.This PR was created with the help of an agent.