create-breadc 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 -2
- package/dist/cli.mjs +10 -5
- package/dist/index.d.mts +3 -2
- package/dist/index.mjs +3 -1
- package/package.json +8 -8
- package/dist/cli.d.ts +0 -2
- package/dist/index.d.ts +0 -3
package/dist/cli.d.mts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export { }
|
|
1
|
+
export { };
|
package/dist/cli.mjs
CHANGED
|
@@ -1,8 +1,13 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { breadc } from "breadc";
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
//#region package.json
|
|
4
|
+
var version = "1.0.0-beta.2";
|
|
4
5
|
|
|
5
|
-
|
|
6
|
-
cli.
|
|
7
|
-
});
|
|
6
|
+
//#endregion
|
|
7
|
+
//#region src/cli.ts
|
|
8
|
+
const cli = breadc("breadcpack", { version });
|
|
9
|
+
cli.command("[root]", "Create breadc project").action((root, option) => {});
|
|
8
10
|
cli.run(process.argv.slice(2)).catch((err) => console.error(err));
|
|
11
|
+
|
|
12
|
+
//#endregion
|
|
13
|
+
export { };
|
package/dist/index.d.mts
CHANGED
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-breadc",
|
|
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
|
"create-breadc": "create-breadc.mjs"
|
|
34
34
|
},
|
|
@@ -37,12 +37,12 @@
|
|
|
37
37
|
"*.mjs"
|
|
38
38
|
],
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@breadc/
|
|
41
|
-
"@breadc/
|
|
40
|
+
"@breadc/core": "1.0.0-beta.2",
|
|
41
|
+
"@breadc/color": "1.0.0-beta.2",
|
|
42
|
+
"breadc": "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
|
}
|
package/dist/cli.d.ts
DELETED
package/dist/index.d.ts
DELETED