breadc 0.9.1 → 0.9.4
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.
- package/README.md +2 -2
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
Yet another Command Line Application Framework with fully strong **[TypeScript](https://www.typescriptlang.org/) support**.
|
|
6
6
|
|
|
7
|
-

|
|
8
8
|
|
|
9
9
|
## Features
|
|
10
10
|
|
|
@@ -43,7 +43,7 @@ cli.run(process.argv.slice(2)).catch(err => console.error(err))
|
|
|
43
43
|
|
|
44
44
|
If you are using IDEs that support TypeScript (like [Visual Studio Code](https://code.visualstudio.com/)), input something using `option`, and then you will find the `option` is automatically typed with `{ host: string, port: number }`. In the figure below, [Visual Studio Code](https://code.visualstudio.com/) will automatically infer that the type of `option.host` is `string` and the type of `option.port` is `number`.
|
|
45
45
|
|
|
46
|
-

|
|
47
47
|
|
|
48
48
|
### Limitation
|
|
49
49
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "breadc",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.4",
|
|
4
4
|
"description": "Yet another Command Line Application Framework with fully strong TypeScript support",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"breadc",
|
|
@@ -35,13 +35,13 @@
|
|
|
35
35
|
"dist"
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@breadc/color": "0.9.
|
|
38
|
+
"@breadc/color": "0.9.4"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@types/node": "^18.
|
|
42
|
-
"@vitest/coverage-c8": "^0.
|
|
41
|
+
"@types/node": "^18.16.7",
|
|
42
|
+
"@vitest/coverage-c8": "^0.31.0",
|
|
43
43
|
"cac": "^6.7.14",
|
|
44
|
-
"vitest": "0.
|
|
44
|
+
"vitest": "0.31.0"
|
|
45
45
|
},
|
|
46
46
|
"size-limit": [
|
|
47
47
|
{
|