@bobsworkshop/cli 0.1.2 → 0.1.4

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,5 +1,3 @@
1
- #!/usr/bin/env node
2
-
3
1
  // src/commands/analyse-results.ts
4
2
  import chalk3 from "chalk";
5
3
  import inquirer from "inquirer";
package/package.json CHANGED
@@ -1,14 +1,16 @@
1
1
  {
2
2
  "name": "@bobsworkshop/cli",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "Bob's CLI — AI coding assistant and Forge orchestrator",
5
5
  "type": "module",
6
- "files": ["dist"],
6
+ "files": [
7
+ "dist"
8
+ ],
7
9
  "bin": {
8
- "bob": "./dist/bin/bob.js"
10
+ "bob": "./dist/bob.js"
9
11
  },
10
12
  "scripts": {
11
- "build": "tsup bin/bob.ts --format esm --out-dir dist/bin --banner.js \"#!/usr/bin/env node\"",
13
+ "build": "tsup bin/bob.ts --format esm --out-dir dist",
12
14
  "dev": "node --loader ts-node/esm bin/bob.ts",
13
15
  "test": "vitest"
14
16
  },
@@ -50,4 +52,4 @@
50
52
  "typescript": "^6.0.3",
51
53
  "vitest": "^4.1.8"
52
54
  }
53
- }
55
+ }