claudekit-cli 4.4.0-dev.2 → 4.4.0-dev.3
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/cli-manifest.json +2 -2
- package/dist/index.js +5 -4
- package/package.json +1 -1
package/cli-manifest.json
CHANGED
package/dist/index.js
CHANGED
|
@@ -63852,7 +63852,7 @@ var package_default;
|
|
|
63852
63852
|
var init_package = __esm(() => {
|
|
63853
63853
|
package_default = {
|
|
63854
63854
|
name: "claudekit-cli",
|
|
63855
|
-
version: "4.4.0-dev.
|
|
63855
|
+
version: "4.4.0-dev.3",
|
|
63856
63856
|
description: "CLI tool for bootstrapping and updating ClaudeKit projects",
|
|
63857
63857
|
type: "module",
|
|
63858
63858
|
repository: {
|
|
@@ -68483,17 +68483,18 @@ function registerSystemRoutes(app) {
|
|
|
68483
68483
|
});
|
|
68484
68484
|
app.get("/api/system/info", async (_req, res) => {
|
|
68485
68485
|
try {
|
|
68486
|
-
const [packageJson, installLocation, gitVersion, ghVersion] = await Promise.all([
|
|
68486
|
+
const [packageJson, installLocation, gitVersion, ghVersion, bunVersion] = await Promise.all([
|
|
68487
68487
|
getPackageJson(),
|
|
68488
68488
|
runCommand("which", ["ck"], "not found"),
|
|
68489
68489
|
runCommand("git", ["--version"], "unknown"),
|
|
68490
68490
|
runCommand("gh", ["--version"], "unknown").then((out) => out.split(`
|
|
68491
|
-
`)[0] ?? "unknown")
|
|
68491
|
+
`)[0] ?? "unknown"),
|
|
68492
|
+
runCommand("bun", ["--version"], "").then((out) => out || null)
|
|
68492
68493
|
]);
|
|
68493
68494
|
const response = {
|
|
68494
68495
|
configPath: PathResolver.getGlobalKitDir(),
|
|
68495
68496
|
nodeVersion: process.version,
|
|
68496
|
-
bunVersion
|
|
68497
|
+
bunVersion,
|
|
68497
68498
|
os: `${process.platform} ${process.arch}`,
|
|
68498
68499
|
cliVersion: packageJson?.version ?? "unknown",
|
|
68499
68500
|
packageManager: detectPackageManager(),
|