@braingrid/cli 0.2.20 → 0.2.21

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/CHANGELOG.md CHANGED
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.2.21] - 2025-12-18
11
+
12
+ ### Fixed
13
+
14
+ - **Status line TASK null bug**
15
+ - Fixed jq query returning `TASK null` when no IN_PROGRESS tasks exist
16
+ - Added `select(. != null)` after `first` to properly trigger fallback to PLANNED tasks
17
+
18
+ ### Changed
19
+
20
+ - **Setup prompt default option**
21
+ - "Overwrite all" is now the first/default option in file conflict prompts
22
+ - Makes it easier to update all BrainGrid integration files at once
23
+
10
24
  ## [0.2.20] - 2025-12-18
11
25
 
12
26
  ### Added
package/dist/cli.js CHANGED
@@ -422,7 +422,7 @@ import axios3, { AxiosError as AxiosError2 } from "axios";
422
422
 
423
423
  // src/build-config.ts
424
424
  var BUILD_ENV = true ? "production" : process.env.NODE_ENV === "test" ? "development" : "production";
425
- var CLI_VERSION = true ? "0.2.20" : "0.0.0-test";
425
+ var CLI_VERSION = true ? "0.2.21" : "0.0.0-test";
426
426
  var PRODUCTION_CONFIG = {
427
427
  apiUrl: "https://app.braingrid.ai",
428
428
  workosAuthUrl: "https://auth.braingrid.ai",
@@ -5953,9 +5953,9 @@ async function promptForConflict(filePath) {
5953
5953
  const answer = await select2({
5954
5954
  message: chalk12.yellow(`File exists: ${filePath}`),
5955
5955
  choices: [
5956
+ { name: "[A]ll - Overwrite all remaining", value: "all" },
5956
5957
  { name: "[O]verwrite - Replace this file", value: "overwrite" },
5957
5958
  { name: "[S]kip - Keep existing file", value: "skip" },
5958
- { name: "[A]ll - Overwrite all remaining", value: "all" },
5959
5959
  { name: "[Q]uit - Cancel installation", value: "quit" }
5960
5960
  ]
5961
5961
  });