breadc 0.9.4 → 0.9.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +4 -3
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # 🥪 Breadc
2
2
 
3
- [![version](https://img.shields.io/npm/v/breadc?color=rgb%2850%2C203%2C86%29&label=Breadc)](https://www.npmjs.com/package/breadc) [![CI](https://github.com/yjl9903/Breadc/actions/workflows/ci.yml/badge.svg)](https://github.com/yjl9903/Breadc/actions/workflows/ci.yml) [![codecov](https://codecov.io/gh/yjl9903/Breadc/branch/main/graph/badge.svg?token=F7PGOG62EF)](https://codecov.io/gh/yjl9903/Breadc)
3
+ [![version](https://img.shields.io/npm/v/breadc?label=Breadc)](https://www.npmjs.com/package/breadc) [![CI](https://github.com/yjl9903/Breadc/actions/workflows/ci.yml/badge.svg)](https://github.com/yjl9903/Breadc/actions/workflows/ci.yml) [![codecov](https://codecov.io/gh/yjl9903/Breadc/branch/main/graph/badge.svg?token=F7PGOG62EF)](https://codecov.io/gh/yjl9903/Breadc)
4
4
 
5
5
  Yet another Command Line Application Framework with fully strong **[TypeScript](https://www.typescriptlang.org/) support**.
6
6
 
@@ -9,8 +9,9 @@ Yet another Command Line Application Framework with fully strong **[TypeScript](
9
9
  ## Features
10
10
 
11
11
  + 🔍 **TypeScript Infer**: IDE will automatically infer the type of your command action function;
12
- + 💻 **Commands**: Support default command, command alias and sub-commands like `git remote add <name> <url>`;
13
- + 📖 **East to Learn**: Breadc is very similar with [cac](https://github.com/cacjs/cac) and there are only 5 APIs for building a CLI application: `breadc`, `command`, `option`, `action`, `run`.
12
+ + 💻 **Commands**: support default command, command alias and sub-commands like `git remote add <name> <url>`;
13
+ + 📖 **East to Learn**: very similar with [commander.js](https://github.com/tj/commander.js/), [cac](https://github.com/cacjs/cac) and there are only 5 APIs for building a CLI application: `breadc`, `command`, `option`, `action`, `run`.
14
+ + 🧰 **Toolkit**: contains many useful tools to build your next CLI application, such as [ansi color](https://github.com/yjl9903/Breadc/tree/main/packages/color), [process death handler](https://github.com/yjl9903/Breadc/tree/main/packages/death), [shell compelete script generation](https://github.com/yjl9903/Breadc/tree/main/packages/complete) and so on.
14
15
 
15
16
  ## Installation
16
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "breadc",
3
- "version": "0.9.4",
3
+ "version": "0.9.5",
4
4
  "description": "Yet another Command Line Application Framework with fully strong TypeScript support",
5
5
  "keywords": [
6
6
  "breadc",
@@ -35,10 +35,10 @@
35
35
  "dist"
36
36
  ],
37
37
  "dependencies": {
38
- "@breadc/color": "0.9.4"
38
+ "@breadc/color": "0.9.5"
39
39
  },
40
40
  "devDependencies": {
41
- "@types/node": "^18.16.7",
41
+ "@types/node": "^18.16.8",
42
42
  "@vitest/coverage-c8": "^0.31.0",
43
43
  "cac": "^6.7.14",
44
44
  "vitest": "0.31.0"