You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The legacy-format generators (legacy-html, legacy-html-all, legacy-json, and legacy-json-all) have moved into the new @doc-kittens/legacy package, and are loaded via import specifiers such as @doc-kittens/legacy/legacy-html.
Medium Risk
Breaking for direct @node-core/doc-kit/legacy-* imports and a large cross-package move; CLI names are preserved but generator loading and dependency wiring must stay correct at publish time.
Overview
Moves the legacy-html, legacy-html-all, legacy-json, and legacy-json-all generators out of @node-core/doc-kit into a new @doc-kittens/legacy workspace package, with subpath exports such as @doc-kittens/legacy/legacy-html.
CLI and config shorthand (legacy-html, etc.) still resolve through publicGenerators, but now target the new package instead of core exports. @node-core/doc-kit drops the four ./legacy-* package exports; consumers that imported those paths must switch to @doc-kittens/legacy/....
Moved code now depends on core via @node-core/doc-kit/... imports (config, remark, metadata types, etc.). legacyToJSON and its tests move from core utils into packages/legacy; core’s generators.test.mjs no longer covers it. dependsOn for the -all generators and ESLint’s browser-globals path are updated for the new layout. Changeset marks @doc-kittens/legacy major and @node-core/doc-kit minor.
Reviewed by Cursor Bugbot for commit 9d9d060. Bugbot is set up for automated code reviews on this repo. Configure here.
The reason will be displayed to describe this comment to others. Learn more.
Copilot was unable to review this pull request because the user who requested the review has reached their quota limit.
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
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.
The legacy-format generators (legacy-html, legacy-html-all, legacy-json, and legacy-json-all) have moved into the new @doc-kittens/legacy package, and are loaded via import specifiers such as @doc-kittens/legacy/legacy-html.