@braingrid/cli 0.2.59 → 0.2.60
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 +6 -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,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.2.60] - 2026-03-12
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **Rename skill.md to SKILL.md** — standardized skill file naming to uppercase for consistency across all skill directories
|
|
15
|
+
|
|
10
16
|
## [0.2.59] - 2026-03-11
|
|
11
17
|
|
|
12
18
|
### Fixed
|
package/dist/cli.js
CHANGED
|
@@ -226,7 +226,7 @@ async function axiosWithRetry(config2, options) {
|
|
|
226
226
|
|
|
227
227
|
// src/build-config.ts
|
|
228
228
|
var BUILD_ENV = true ? "production" : process.env.NODE_ENV === "test" ? "development" : "production";
|
|
229
|
-
var CLI_VERSION = true ? "0.2.
|
|
229
|
+
var CLI_VERSION = true ? "0.2.60" : "0.0.0-test";
|
|
230
230
|
var PRODUCTION_CONFIG = {
|
|
231
231
|
apiUrl: "https://app.braingrid.ai",
|
|
232
232
|
workosAuthUrl: "https://auth.braingrid.ai",
|