feat(devtools): ship devtools as a layer#630
Merged
Merged
Conversation
6 tasks
…ls workspace pkg The devtools dir is a source layer now (no package.json), so remove it from the workspace packages and drop the playground's dependency on the old nuxt-og-image-devtools package, then bump the shared deps to 5.2.0.
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.
Nuxt SEO DevTools — Model C migration
Moves OG Image's devtools from a standalone prebuilt SPA to a Nuxt layer that the shared Nuxt SEO devtools client assembles in the user's project from all installed modules (one client instead of ~1.9MB-per-module duplicated vendor/fonts/css).
devtools/is now a layer: pages underpages/og-image/, composables underlib/og-image/, the 13 renderer components undercomponents/og-image/.build:clientnow ships the layer source atdist/devtoolsinstead of prerendering a standalone app.lib/og-image/runtime-types.ts,rpc-types.ts), and the two runtime helpers the panel needs (encodeOgImageParams,separateProps) are vendored intolib/og-image/shared/— so the shipped layer has no dependency onsrc(published packages shipdist).nuxtseo-sharedwith the register-basedsetupDevToolsUI(Model C). Do not merge/publish until that ships. Companion PR: nuxt-modules/robots#301.