breadcpack 0.9.7 → 1.0.0-beta.2
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/dist/cli.d.mts +1 -0
- package/dist/cli.mjs +13 -0
- package/dist/index.d.mts +4 -0
- package/dist/index.mjs +5 -0
- package/package.json +8 -8
package/dist/cli.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { };
|
package/dist/cli.mjs
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { breadc } from "breadc";
|
|
2
|
+
|
|
3
|
+
//#region package.json
|
|
4
|
+
var version = "1.0.0-beta.2";
|
|
5
|
+
|
|
6
|
+
//#endregion
|
|
7
|
+
//#region src/cli.ts
|
|
8
|
+
const cli = breadc("breadcpack", { version });
|
|
9
|
+
cli.command("[root]", "Create breadc project").action((root, option) => {});
|
|
10
|
+
cli.run(process.argv.slice(2)).catch((err) => console.error(err));
|
|
11
|
+
|
|
12
|
+
//#endregion
|
|
13
|
+
export { };
|
package/dist/index.d.mts
ADDED
package/dist/index.mjs
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "breadcpack",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0-beta.2",
|
|
4
4
|
"description": "Yet another Command Line Application Framework with fully strong TypeScript support",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"breadc",
|
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
"type": "module",
|
|
24
24
|
"exports": {
|
|
25
25
|
".": {
|
|
26
|
-
"
|
|
27
|
-
"
|
|
26
|
+
"types": "./dist/index.d.mts",
|
|
27
|
+
"import": "./dist/index.mjs"
|
|
28
28
|
}
|
|
29
29
|
},
|
|
30
30
|
"module": "dist/index.mjs",
|
|
31
|
-
"types": "dist/index.d.
|
|
31
|
+
"types": "dist/index.d.mts",
|
|
32
32
|
"bin": {
|
|
33
33
|
"breadcpack": "breadcpack.mjs"
|
|
34
34
|
},
|
|
@@ -37,12 +37,12 @@
|
|
|
37
37
|
"*.mjs"
|
|
38
38
|
],
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@breadc/
|
|
41
|
-
"
|
|
40
|
+
"@breadc/color": "1.0.0-beta.2",
|
|
41
|
+
"breadc": "1.0.0-beta.2",
|
|
42
|
+
"@breadc/core": "1.0.0-beta.2"
|
|
42
43
|
},
|
|
43
44
|
"scripts": {
|
|
44
|
-
"build": "
|
|
45
|
-
"format": "prettier --write src/**/*.ts",
|
|
45
|
+
"build": "tsdown",
|
|
46
46
|
"typecheck": "tsc --noEmit"
|
|
47
47
|
}
|
|
48
48
|
}
|