Skip to content

Commit

Permalink
chore: version packages (#16)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Oct 16, 2024
1 parent d675d46 commit b3a59f6
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 9 deletions.
5 changes: 0 additions & 5 deletions .changeset/cuddly-crabs-vanish.md

This file was deleted.

4 changes: 3 additions & 1 deletion examples/node-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
"dev": "NODE_ENV=development node cli.js",
"prod": "node cli.js"
},
"files": ["cli"],
"files": [
"cli"
],
"dependencies": {
"clide-js": "*",
"clide-plugin-command-menu": "*"
Expand Down
4 changes: 3 additions & 1 deletion examples/typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
"license": "MIT",
"bin": "dist/cli.js",
"type": "module",
"files": ["dist"],
"files": [
"dist"
],
"scripts": {
"dev": "NODE_ENV=development tsx src/cli.ts",
"prod": "node dist/cli.js",
Expand Down
6 changes: 6 additions & 0 deletions packages/clide-js/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# clide-js

## 0.2.2

### Patch Changes

- d675d46: Fixed error output which previously buried the stack trace in minified code.

## 0.2.1

### 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.2.1",
"version": "0.2.2",
"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"
]
}

0 comments on commit b3a59f6

Please sign in to comment.