@b0tts/template-dev-installer 1.1.1 → 1.2.0

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.
Files changed (2) hide show
  1. package/bin/cli.mjs +4 -2
  2. package/package.json +1 -1
package/bin/cli.mjs CHANGED
@@ -11,7 +11,8 @@
11
11
  // 4. All — everything above
12
12
  // ────────────────────────────────────────────────────────────────────
13
13
 
14
- import { checkbox, confirm } from "@inquirer/prompts";
14
+ import checkbox, { Separator } from "./reactive-checkbox.mjs";
15
+ import { confirm } from "@inquirer/prompts";
15
16
  import { cpSync, existsSync, mkdirSync, readdirSync } from "node:fs";
16
17
  import { resolve, dirname } from "node:path";
17
18
  import { fileURLToPath } from "node:url";
@@ -134,7 +135,8 @@ async function main() {
134
135
  const chosen = await checkbox({
135
136
  message: "Select categories to install (Space to toggle, Enter to confirm):",
136
137
  choices: [
137
- { name: "All", value: "all" },
138
+ { name: "All", value: "all", isAll: true },
139
+ new Separator(),
138
140
  { name: "Skills", value: "skills" },
139
141
  { name: "OpenCode", value: "opencode" },
140
142
  { name: "Pi", value: "pi" },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@b0tts/template-dev-installer",
3
- "version": "1.1.1",
3
+ "version": "1.2.0",
4
4
  "type": "module",
5
5
  "description": "Interactive installer for the DevelopmentTemplate — pick Skills, OpenCode, Pi, or install everything at once.",
6
6
  "bin": {