@braingrid/cli 0.2.62 → 0.2.64
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 +13 -0
- package/dist/cli.js +1 -1
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.2.64] - 2026-03-23
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- **Unsplash image integration for frontend design skill** — added Unsplash image search and integration support to the frontend design skill, including search script and reference documentation
|
|
15
|
+
|
|
16
|
+
## [0.2.63] - 2026-03-20
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
|
|
20
|
+
- **Skip branch creation in bg-build for CONV-\* branches** — bg-build no longer attempts to create branches when working on CONV-* conversation branches
|
|
21
|
+
- **Handle null SHA in sync-claude script** — fixed sync-claude script crashing when encountering null SHA values
|
|
22
|
+
|
|
10
23
|
## [0.2.62] - 2026-03-20
|
|
11
24
|
|
|
12
25
|
### Changed
|
package/dist/cli.js
CHANGED
|
@@ -227,7 +227,7 @@ async function axiosWithRetry(config2, options) {
|
|
|
227
227
|
|
|
228
228
|
// src/build-config.ts
|
|
229
229
|
var BUILD_ENV = true ? "production" : process.env.NODE_ENV === "test" ? "development" : "production";
|
|
230
|
-
var CLI_VERSION = true ? "0.2.
|
|
230
|
+
var CLI_VERSION = true ? "0.2.64" : "0.0.0-test";
|
|
231
231
|
var PRODUCTION_CONFIG = {
|
|
232
232
|
apiUrl: "https://app.braingrid.ai",
|
|
233
233
|
workosAuthUrl: "https://auth.braingrid.ai",
|