fleetlens 0.6.0 → 0.6.1
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/app/apps/web/.next/BUILD_ID +1 -1
- package/app/apps/web/.next/build-manifest.json +3 -3
- package/app/apps/web/.next/prerender-manifest.json +3 -3
- package/app/apps/web/.next/server/app/_global-error.html +1 -1
- package/app/apps/web/.next/server/app/_global-error.rsc +1 -1
- package/app/apps/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
- package/app/apps/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
- package/app/apps/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
- package/app/apps/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
- package/app/apps/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
- package/app/apps/web/.next/server/chunks/ssr/_0xu2pvc._.js +1 -1
- package/app/apps/web/.next/server/middleware-build-manifest.js +3 -3
- package/app/apps/web/.next/server/pages/500.html +1 -1
- package/app/apps/web/.next/server/server-reference-manifest.js +1 -1
- package/app/apps/web/.next/server/server-reference-manifest.json +1 -1
- package/app/apps/web/package.json +1 -1
- package/app/apps/web/tsconfig.tsbuildinfo +1 -1
- package/dist/index.js +5 -5
- package/package.json +2 -4
- /package/app/apps/web/.next/static/{8tTWPvUhtatZEoocIhamh → fm3KE6Y_UOzhf_27jAYYK}/_buildManifest.js +0 -0
- /package/app/apps/web/.next/static/{8tTWPvUhtatZEoocIhamh → fm3KE6Y_UOzhf_27jAYYK}/_clientMiddlewareManifest.js +0 -0
- /package/app/apps/web/.next/static/{8tTWPvUhtatZEoocIhamh → fm3KE6Y_UOzhf_27jAYYK}/_ssgManifest.js +0 -0
package/dist/index.js
CHANGED
|
@@ -454,9 +454,9 @@ Installed: ${PACKAGE_NAME}@${verify.installedVersion} at ${verify.installedPath
|
|
|
454
454
|
console.warn(
|
|
455
455
|
` \u2022 reinstall in the correct Node env: 'npm install -g ${PACKAGE_NAME}@latest'`
|
|
456
456
|
);
|
|
457
|
-
} else if (verify.installedVersion !== "0.6.
|
|
457
|
+
} else if (verify.installedVersion !== "0.6.1") {
|
|
458
458
|
console.log(
|
|
459
|
-
` \u2192 This process is still running ${"0.6.
|
|
459
|
+
` \u2192 This process is still running ${"0.6.1"}. Next invocation will use ${verify.installedVersion}.`
|
|
460
460
|
);
|
|
461
461
|
}
|
|
462
462
|
}
|
|
@@ -492,7 +492,7 @@ async function checkForUpdate() {
|
|
|
492
492
|
if (process.env.__FLEETLENS_UPDATED === "1" || process.env.__CCLENS_UPDATED === "1") return;
|
|
493
493
|
const latest = await fetchLatestVersion();
|
|
494
494
|
if (latest === null) return;
|
|
495
|
-
const current = "0.6.
|
|
495
|
+
const current = "0.6.1";
|
|
496
496
|
if (!shouldUpdate(current, latest)) return;
|
|
497
497
|
console.log(`Updating ${PACKAGE_NAME} ${current} \u2192 ${latest}...`);
|
|
498
498
|
await stopRunningServices();
|
|
@@ -574,7 +574,7 @@ async function restartServices(state) {
|
|
|
574
574
|
}
|
|
575
575
|
async function forceUpdate() {
|
|
576
576
|
const latest = await fetchLatestVersion();
|
|
577
|
-
const current = "0.6.
|
|
577
|
+
const current = "0.6.1";
|
|
578
578
|
if (latest === null) {
|
|
579
579
|
console.error("Could not reach npm registry. Check your network.");
|
|
580
580
|
process.exit(1);
|
|
@@ -14027,7 +14027,7 @@ async function main() {
|
|
|
14027
14027
|
case "version":
|
|
14028
14028
|
case "--version":
|
|
14029
14029
|
case "-v":
|
|
14030
|
-
console.log(`fleetlens ${"0.6.
|
|
14030
|
+
console.log(`fleetlens ${"0.6.1"}`);
|
|
14031
14031
|
break;
|
|
14032
14032
|
case "help":
|
|
14033
14033
|
case "--help":
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fleetlens",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"description": "fleetlens — local-only dashboard and usage tracker for Claude Code sessions and agent fleets",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -21,10 +21,8 @@
|
|
|
21
21
|
"test:coverage": "vitest run --coverage",
|
|
22
22
|
"lint": "eslint"
|
|
23
23
|
},
|
|
24
|
-
"dependencies": {
|
|
25
|
-
"@claude-lens/entries": "workspace:*"
|
|
26
|
-
},
|
|
27
24
|
"devDependencies": {
|
|
25
|
+
"@claude-lens/entries": "workspace:*",
|
|
28
26
|
"@claude-lens/parser": "workspace:*",
|
|
29
27
|
"@types/node": "^20.11.0",
|
|
30
28
|
"@vitest/coverage-v8": "^2.1.9",
|
/package/app/apps/web/.next/static/{8tTWPvUhtatZEoocIhamh → fm3KE6Y_UOzhf_27jAYYK}/_buildManifest.js
RENAMED
|
File without changes
|
|
File without changes
|
/package/app/apps/web/.next/static/{8tTWPvUhtatZEoocIhamh → fm3KE6Y_UOzhf_27jAYYK}/_ssgManifest.js
RENAMED
|
File without changes
|