Skip to content

Commit

Permalink
chore: version packages (#13)
Browse files Browse the repository at this point in the history
* chore: version packages

* Update packages/clide-js/CHANGELOG.md

* Update packages/clide-plugin-command-menu/CHANGELOG.md

* Update packages/clide-plugin-command-menu/package.json

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Ryan Goree <goree.ryan@gmail.com>
  • Loading branch information
3 people authored Jun 26, 2024
1 parent 2eb1489 commit 732b1fc
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 23 deletions.
5 changes: 0 additions & 5 deletions .changeset/curly-walls-knock.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/late-ears-push.md

This file was deleted.

15 changes: 15 additions & 0 deletions packages/clide-js/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# clide-js

## 0.2.0

### Minor Changes

- 2eb1489:
- Polished up internal ✨**test utils**✨ and added them to the exports so you can easily test you're CLIs and plugins!
- Made the `logger` plugin more full featured with `prefix`, `logFile`, and `enabled` options, and util functions for enabling/disabling the logger during runtime.
- Added `formatFileName` util function to exports.
- Added getters to `State` for `client`, ... so they can be accessed without needing to go through through `Context`.
- Made the `Hooks` type a generic which takes a `HooksObject` type param.
- Made the `PluginInfo` type a generic which takes a `PluginMeta` type param.
- Renamed `StateOptions.data` to `StateOptions.initialData`.
- Refactored command resolution to ignore relative paths.
- Fixed the `optionValues` type on `State.fork` to work with command types that have an optional `options` field.

## 0.1.5

### Patch Changes
Expand Down
6 changes: 4 additions & 2 deletions packages/clide-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "clide-js",
"version": "0.1.5",
"version": "0.2.0",
"description": "A framework for building flexible and extensible CLIs",
"license": "MIT",
"type": "module",
Expand Down Expand Up @@ -60,5 +60,7 @@
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist"]
"files": [
"dist"
]
}
11 changes: 11 additions & 0 deletions packages/clide-plugin-command-menu/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# clide-plugin-command-menu

## 0.1.0

### Minor Changes

- 2eb1489: Renamed `skip` option to `enabled`.

### Patch Changes

- Updated dependencies [2eb1489]
- clide-js@0.2.0

## 0.0.8

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/clide-plugin-command-menu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "clide-plugin-command-menu",
"version": "0.0.8",
"version": "0.1.0",
"description": "A plugin for Clide-JS CLIs to auto-prompt the user for missing required subcommands.",
"license": "MIT",
"type": "module",
Expand All @@ -17,7 +17,7 @@
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"clide-js": "^0.1"
"clide-js": "^0.2.0"
},
"dependencies": {
"cfonts": "^3.2.0",
Expand All @@ -26,7 +26,7 @@
},
"devDependencies": {
"@types/node": "^20.12.7",
"clide-js": "^0.1.5",
"clide-js": "^0.2.0",
"ts-node": "^10.9.2",
"tsconfig": "*",
"tsup": "^8.0.2",
Expand Down

0 comments on commit 732b1fc

Please sign in to comment.