@beastmode-develeap/beastmode 0.1.382 → 0.1.383
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/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/web/board.html +19 -2
- package/dist/web/build-commit.txt +1 -1
- package/dist/web/build-stamp.txt +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5708,15 +5708,17 @@ function _gitHeadSha(repoPath) {
|
|
|
5708
5708
|
}
|
|
5709
5709
|
}
|
|
5710
5710
|
function _computeGuideStaleness(projectsDir, name, meta) {
|
|
5711
|
+
const versionTracked = meta.target_repo_head_sha !== "no-git";
|
|
5711
5712
|
const proj = readProjectRecord(projectsDir, name);
|
|
5712
5713
|
const currentSha = proj ? _gitHeadSha(proj.path) : "no-git";
|
|
5713
5714
|
if (currentSha === "no-git") {
|
|
5714
|
-
return { stale: false, current_head_sha: currentSha, head_check: "unavailable" };
|
|
5715
|
+
return { stale: false, current_head_sha: currentSha, head_check: "unavailable", version_tracked: versionTracked };
|
|
5715
5716
|
}
|
|
5716
5717
|
return {
|
|
5717
5718
|
stale: meta.target_repo_head_sha !== currentSha,
|
|
5718
5719
|
current_head_sha: currentSha,
|
|
5719
|
-
head_check: "ok"
|
|
5720
|
+
head_check: "ok",
|
|
5721
|
+
version_tracked: versionTracked
|
|
5720
5722
|
};
|
|
5721
5723
|
}
|
|
5722
5724
|
function getBoardRoutes(factoryDir) {
|