chore: update versions#236
Merged
Merged
Conversation
Releases: @rrlab/cli@1.2.0 @vlandoss/clibuddy@0.7.1 @vlandoss/vland@0.3.2 @rrlab/biome-plugin@1.1.1 @rrlab/oxc-plugin@1.1.1 @rrlab/ts-plugin@1.1.1 @rrlab/tsdown-plugin@1.1.1 [skip ci]
44f214d to
2b71bf8
Compare
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.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@rrlab/cli@1.2.0
Minor Changes
#235
c82191dThanks @rqbazan! - Decouple the CLI into framework-agnostic layers and redesign the help surface.Every command body becomes a free-function action (
src/actions/*) that takes a single<Name>ActionConfigobject; commander commands are thin wrappers that resolve their service via thectx.pluginsfacade (throwingMissingPluginErrorwhen no configured plugin provides the capability) and delegate to exactly one action. Actions depend only onservices/render/lib, never on the CLI framework. The plugin SDK moves tosrc/lib/plugin/*, ad-hoc errors become domain error classes (src/errors/*for kernel errors,src/lib/plugin/errors.tsfor SDK errors), and a plugin'suilabel is now derived from a singlecolorfunction it provides — plugins no longer hard-code their ownuistring. Thepluginscommand monolith is split intoactions/plugins/*, and the official plugin list is reshaped intosrc/lib/plugin/directory.ts(PLUGINS_DIRECTORY+allPluginNames/isPluginName).The help surface is rebuilt on commander's native formatter instead of a bespoke help class: the root program is a
RunRunCmdsubclass that groups commands (Code quality:/Build:/Maintenance:/Meta:) and attaches a banner and an installed/available plugins footer viaaddHelpText. Unknown commands now use commander's nativeshowSuggestionAfterError"Did you mean?" output.--aboutcredits, per-commandPowered by:/See also:lines (auto-derived from each command's declared capabilities by theCmdbase class insrc/program/base.ts), the installed/available plugins footer (render/footer.ts), arr configplugins table (package + version), and a small table/line builder (render/lines.ts) round out the rendering layer.Patch Changes
#237
b761f03Thanks @rqbazan! - Refresh the README for the microkernel model.Drop the stale, hand-maintained
Toolboxsection (it still listedrimraf, which isn't a plugin) and fold the tool list into thePluginssection as the single source of truth. The official plugins are now named there —biome,oxc,ts,tsdown— each linked to the tool it wraps, framed as capabilities added via plugins rather than a flat bag of tools.Updated dependencies [
c82191d]:@rrlab/biome-plugin@1.1.1
Patch Changes
#235
c82191dThanks @rqbazan! - Decouple the CLI into framework-agnostic layers and redesign the help surface.Every command body becomes a free-function action (
src/actions/*) that takes a single<Name>ActionConfigobject; commander commands are thin wrappers that resolve their service via thectx.pluginsfacade (throwingMissingPluginErrorwhen no configured plugin provides the capability) and delegate to exactly one action. Actions depend only onservices/render/lib, never on the CLI framework. The plugin SDK moves tosrc/lib/plugin/*, ad-hoc errors become domain error classes (src/errors/*for kernel errors,src/lib/plugin/errors.tsfor SDK errors), and a plugin'suilabel is now derived from a singlecolorfunction it provides — plugins no longer hard-code their ownuistring. Thepluginscommand monolith is split intoactions/plugins/*, and the official plugin list is reshaped intosrc/lib/plugin/directory.ts(PLUGINS_DIRECTORY+allPluginNames/isPluginName).The help surface is rebuilt on commander's native formatter instead of a bespoke help class: the root program is a
RunRunCmdsubclass that groups commands (Code quality:/Build:/Maintenance:/Meta:) and attaches a banner and an installed/available plugins footer viaaddHelpText. Unknown commands now use commander's nativeshowSuggestionAfterError"Did you mean?" output.--aboutcredits, per-commandPowered by:/See also:lines (auto-derived from each command's declared capabilities by theCmdbase class insrc/program/base.ts), the installed/available plugins footer (render/footer.ts), arr configplugins table (package + version), and a small table/line builder (render/lines.ts) round out the rendering layer.Updated dependencies [
c82191d]:@rrlab/oxc-plugin@1.1.1
Patch Changes
#235
c82191dThanks @rqbazan! - Decouple the CLI into framework-agnostic layers and redesign the help surface.Every command body becomes a free-function action (
src/actions/*) that takes a single<Name>ActionConfigobject; commander commands are thin wrappers that resolve their service via thectx.pluginsfacade (throwingMissingPluginErrorwhen no configured plugin provides the capability) and delegate to exactly one action. Actions depend only onservices/render/lib, never on the CLI framework. The plugin SDK moves tosrc/lib/plugin/*, ad-hoc errors become domain error classes (src/errors/*for kernel errors,src/lib/plugin/errors.tsfor SDK errors), and a plugin'suilabel is now derived from a singlecolorfunction it provides — plugins no longer hard-code their ownuistring. Thepluginscommand monolith is split intoactions/plugins/*, and the official plugin list is reshaped intosrc/lib/plugin/directory.ts(PLUGINS_DIRECTORY+allPluginNames/isPluginName).The help surface is rebuilt on commander's native formatter instead of a bespoke help class: the root program is a
RunRunCmdsubclass that groups commands (Code quality:/Build:/Maintenance:/Meta:) and attaches a banner and an installed/available plugins footer viaaddHelpText. Unknown commands now use commander's nativeshowSuggestionAfterError"Did you mean?" output.--aboutcredits, per-commandPowered by:/See also:lines (auto-derived from each command's declared capabilities by theCmdbase class insrc/program/base.ts), the installed/available plugins footer (render/footer.ts), arr configplugins table (package + version), and a small table/line builder (render/lines.ts) round out the rendering layer.Updated dependencies [
c82191d]:@rrlab/ts-plugin@1.1.1
Patch Changes
#235
c82191dThanks @rqbazan! - Decouple the CLI into framework-agnostic layers and redesign the help surface.Every command body becomes a free-function action (
src/actions/*) that takes a single<Name>ActionConfigobject; commander commands are thin wrappers that resolve their service via thectx.pluginsfacade (throwingMissingPluginErrorwhen no configured plugin provides the capability) and delegate to exactly one action. Actions depend only onservices/render/lib, never on the CLI framework. The plugin SDK moves tosrc/lib/plugin/*, ad-hoc errors become domain error classes (src/errors/*for kernel errors,src/lib/plugin/errors.tsfor SDK errors), and a plugin'suilabel is now derived from a singlecolorfunction it provides — plugins no longer hard-code their ownuistring. Thepluginscommand monolith is split intoactions/plugins/*, and the official plugin list is reshaped intosrc/lib/plugin/directory.ts(PLUGINS_DIRECTORY+allPluginNames/isPluginName).The help surface is rebuilt on commander's native formatter instead of a bespoke help class: the root program is a
RunRunCmdsubclass that groups commands (Code quality:/Build:/Maintenance:/Meta:) and attaches a banner and an installed/available plugins footer viaaddHelpText. Unknown commands now use commander's nativeshowSuggestionAfterError"Did you mean?" output.--aboutcredits, per-commandPowered by:/See also:lines (auto-derived from each command's declared capabilities by theCmdbase class insrc/program/base.ts), the installed/available plugins footer (render/footer.ts), arr configplugins table (package + version), and a small table/line builder (render/lines.ts) round out the rendering layer.Updated dependencies [
c82191d]:@rrlab/tsdown-plugin@1.1.1
Patch Changes
#235
c82191dThanks @rqbazan! - Decouple the CLI into framework-agnostic layers and redesign the help surface.Every command body becomes a free-function action (
src/actions/*) that takes a single<Name>ActionConfigobject; commander commands are thin wrappers that resolve their service via thectx.pluginsfacade (throwingMissingPluginErrorwhen no configured plugin provides the capability) and delegate to exactly one action. Actions depend only onservices/render/lib, never on the CLI framework. The plugin SDK moves tosrc/lib/plugin/*, ad-hoc errors become domain error classes (src/errors/*for kernel errors,src/lib/plugin/errors.tsfor SDK errors), and a plugin'suilabel is now derived from a singlecolorfunction it provides — plugins no longer hard-code their ownuistring. Thepluginscommand monolith is split intoactions/plugins/*, and the official plugin list is reshaped intosrc/lib/plugin/directory.ts(PLUGINS_DIRECTORY+allPluginNames/isPluginName).The help surface is rebuilt on commander's native formatter instead of a bespoke help class: the root program is a
RunRunCmdsubclass that groups commands (Code quality:/Build:/Maintenance:/Meta:) and attaches a banner and an installed/available plugins footer viaaddHelpText. Unknown commands now use commander's nativeshowSuggestionAfterError"Did you mean?" output.--aboutcredits, per-commandPowered by:/See also:lines (auto-derived from each command's declared capabilities by theCmdbase class insrc/program/base.ts), the installed/available plugins footer (render/footer.ts), arr configplugins table (package + version), and a small table/line builder (render/lines.ts) round out the rendering layer.Updated dependencies [
c82191d]:@vlandoss/clibuddy@0.7.1
Patch Changes
#235
c82191dThanks @rqbazan! - Drop themutedtoken frompaletteand route its callers throughpalette.dim.muted(a fixed#a8afb5gray) overlapped withdimfor the secondary-text role it was used in ($command prefix,v<version>, thevland init"Next steps" / source path). Consolidating ondimkeeps a single secondary tone and lets it follow the terminal's dim attribute.@vlandoss/vland's banner,--usagehint, andinitoutput move todimaccordingly.@vlandoss/vland@0.3.2
Patch Changes
#235
c82191dThanks @rqbazan! - Drop themutedtoken frompaletteand route its callers throughpalette.dim.muted(a fixed#a8afb5gray) overlapped withdimfor the secondary-text role it was used in ($command prefix,v<version>, thevland init"Next steps" / source path). Consolidating ondimkeeps a single secondary tone and lets it follow the terminal's dim attribute.@vlandoss/vland's banner,--usagehint, andinitoutput move todimaccordingly.Updated dependencies [
c82191d]: