@kidd-cli/cli 0.1.1 → 0.1.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.
@@ -1,6 +1,6 @@
1
1
  import { Command } from "@kidd-cli/core";
2
2
 
3
3
  //#region src/commands/add/command.d.ts
4
- declare const _default: Command;
4
+ declare const addCommandCommand: Command;
5
5
  //#endregion
6
- export { _default as default };
6
+ export { addCommandCommand as default };
@@ -1,6 +1,6 @@
1
1
  import { Command } from "@kidd-cli/core";
2
2
 
3
3
  //#region src/commands/add/middleware.d.ts
4
- declare const _default: Command;
4
+ declare const addMiddlewareCommand: Command;
5
5
  //#endregion
6
- export { _default as default };
6
+ export { addMiddlewareCommand as default };
@@ -1,6 +1,14 @@
1
1
  import { Command } from "@kidd-cli/core";
2
2
 
3
3
  //#region src/commands/build.d.ts
4
- declare const _default: Command;
4
+ /**
5
+ * Build a kidd CLI project for production using tsdown.
6
+ *
7
+ * Loads the project's `kidd.config.ts`, invokes the bundler, and reports
8
+ * the output entry file and directory on success. When `--compile` or
9
+ * `--targets` is provided (or `compile` is set in config), also compiles
10
+ * to standalone binaries via Bun.
11
+ */
12
+ declare const buildCommand: Command;
5
13
  //#endregion
6
- export { _default as default };
14
+ export { buildCommand as default };
@@ -1,6 +1,12 @@
1
1
  import { Command } from "@kidd-cli/core";
2
2
 
3
3
  //#region src/commands/doctor.d.ts
4
- declare const _default: Command;
4
+ /**
5
+ * Diagnose common kidd project issues.
6
+ *
7
+ * Validates config, checks package.json setup, verifies entry points exist,
8
+ * and catches anything that could cause build or runtime failures.
9
+ */
10
+ declare const doctorCommand: Command;
5
11
  //#endregion
6
- export { _default as default };
12
+ export { doctorCommand as default };
@@ -1,6 +1,6 @@
1
1
  import { Command } from "@kidd-cli/core";
2
2
 
3
3
  //#region src/commands/init.d.ts
4
- declare const _default: Command;
4
+ declare const initCommand: Command;
5
5
  //#endregion
6
- export { _default as default };
6
+ export { initCommand as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kidd-cli/cli",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "DX companion CLI for the kidd framework",
5
5
  "keywords": [
6
6
  "cli",
@@ -28,7 +28,7 @@
28
28
  "zod": "^4.3.6",
29
29
  "@kidd-cli/bundler": "0.1.1",
30
30
  "@kidd-cli/config": "0.1.1",
31
- "@kidd-cli/core": "0.1.1",
31
+ "@kidd-cli/core": "0.1.2",
32
32
  "@kidd-cli/utils": "0.1.1"
33
33
  },
34
34
  "devDependencies": {