@factadev/cli 0.2.7 → 0.2.9

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/nest.cjs +1 -1
  2. package/package.json +6 -6
package/bin/nest.cjs CHANGED
@@ -99,7 +99,7 @@ function main() {
99
99
  const currentVer = getInstalledVersion();
100
100
  const latestVer = getLatestVersion();
101
101
  if (currentVer && latestVer && currentVer !== latestVer) {
102
- console.log(`Updating from} to v${ v${currentVerlatestVer}...`);
102
+ console.log(`Updating from v${currentVer} to v${latestVer}...`);
103
103
  installPlatformPackage();
104
104
  binPath = getBinaryPath();
105
105
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@factadev/cli",
3
- "version": "0.2.7",
3
+ "version": "0.2.9",
4
4
  "description": "NEST CLI - Enterprise AI coding agent control center. Run Claude Code, Codex, Cursor, Gemini, OpenCode locally and control remotely via web.",
5
5
  "author": "Carlos Matias Baglieri",
6
6
  "license": "AGPL-3.0-only",
@@ -90,10 +90,10 @@
90
90
  },
91
91
  "packageManager": "bun@1.3.5",
92
92
  "optionalDependencies": {
93
- "@factadev/cli-darwin-arm64": "0.2.7",
94
- "@factadev/cli-darwin-x64": "0.2.7",
95
- "@factadev/cli-linux-arm64": "0.2.7",
96
- "@factadev/cli-linux-x64": "0.2.7",
97
- "@factadev/cli-win32-x64": "0.2.7"
93
+ "@factadev/cli-darwin-arm64": "0.2.9",
94
+ "@factadev/cli-darwin-x64": "0.2.9",
95
+ "@factadev/cli-linux-arm64": "0.2.9",
96
+ "@factadev/cli-linux-x64": "0.2.9",
97
+ "@factadev/cli-win32-x64": "0.2.9"
98
98
  }
99
99
  }