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 CHANGED
@@ -1,2 +1 @@
1
-
2
- export { }
1
+ export { };
package/dist/cli.mjs CHANGED
@@ -1,8 +1,13 @@
1
- import { Breadc } from '@breadc/core';
1
+ import { breadc } from "breadc";
2
2
 
3
- const version = "0.9.7";
3
+ //#region package.json
4
+ var version = "1.0.0-beta.2";
4
5
 
5
- const cli = new Breadc("create-breadc", { version });
6
- cli.command("[root]", "Create breadc project").action((root, option) => {
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
@@ -1,3 +1,4 @@
1
+ //#region src/index.d.ts
1
2
  declare const hello = 1;
2
-
3
- export { hello };
3
+ //#endregion
4
+ export { hello };
package/dist/index.mjs CHANGED
@@ -1,3 +1,5 @@
1
+ //#region src/index.ts
1
2
  const hello = 1;
2
3
 
3
- export { hello };
4
+ //#endregion
5
+ export { hello };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-breadc",
3
- "version": "0.9.7",
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
- "import": "./dist/index.mjs",
27
- "types": "./dist/index.d.ts"
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.ts",
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/color": "0.9.7",
41
- "@breadc/core": "0.9.7"
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": "unbuild",
45
- "format": "prettier --write src/**/*.ts",
45
+ "build": "tsdown",
46
46
  "typecheck": "tsc --noEmit"
47
47
  }
48
48
  }
package/dist/cli.d.ts DELETED
@@ -1,2 +0,0 @@
1
-
2
- export { }
package/dist/index.d.ts DELETED
@@ -1,3 +0,0 @@
1
- declare const hello = 1;
2
-
3
- export { hello };