breadc 0.7.0 → 0.8.0
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/LICENSE +1 -1
- package/README.md +16 -15
- package/dist/index.cjs +590 -458
- package/dist/index.d.ts +121 -109
- package/dist/index.mjs +589 -451
- package/package.json +10 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "breadc",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"description": "Yet another Command Line Application Framework with fully strong TypeScript support",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"breadc",
|
|
@@ -35,29 +35,23 @@
|
|
|
35
35
|
"dist"
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"
|
|
39
|
-
"minimist": "^1.2.7"
|
|
38
|
+
"@breadc/color": "0.8.0"
|
|
40
39
|
},
|
|
41
40
|
"devDependencies": {
|
|
42
|
-
"@types/minimist": "^1.2.2",
|
|
43
41
|
"@types/node": "^18.11.18",
|
|
42
|
+
"@vitest/coverage-c8": "^0.28.4",
|
|
44
43
|
"cac": "^6.7.14",
|
|
45
|
-
"
|
|
46
|
-
"typescript": "^4.9.5",
|
|
47
|
-
"unbuild": "^1.1.1",
|
|
48
|
-
"vite": "^4.0.4",
|
|
49
|
-
"vitest": "^0.28.3"
|
|
44
|
+
"vitest": "0.28.3"
|
|
50
45
|
},
|
|
51
|
-
"packageManager": "pnpm@7.26.3",
|
|
52
46
|
"scripts": {
|
|
53
47
|
"build": "unbuild",
|
|
54
|
-
"
|
|
55
|
-
"format": "prettier --write src/**/*.ts test/*.ts
|
|
56
|
-
"release": "bumpp package.json packages/*/package.json --commit --push --tag && pnpm publish && pnpm -r publish --access public",
|
|
48
|
+
"coverage": "vitest run --coverage",
|
|
49
|
+
"format": "prettier --write src/**/*.ts test/*.ts",
|
|
57
50
|
"test": "vitest",
|
|
58
51
|
"test:bench": "vitest bench",
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
52
|
+
"test:ci": "vitest --run",
|
|
53
|
+
"test:coverage": "vitest run --coverage",
|
|
54
|
+
"test:typecheck": "vitest typecheck",
|
|
55
|
+
"typecheck": "tsc --noEmit && vitest typecheck --run"
|
|
62
56
|
}
|
|
63
57
|
}
|