MCPcopy Create free account
hub / github.com/MisterBooo/LeetCodeAnimation / siteStatus

Function siteStatus

tools/scripts/review-site-changes.js:90–102  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

88}
89
90function siteStatus() {
91 const output = sh("git", [
92 "-C",
93 siteRoot,
94 "status",
95 "--short",
96 "--",
97 "web/public/leetcode-animation",
98 "web/src/lib/leetcode-animation.ts",
99 "web/src/components/leetcode-animation-player.tsx",
100 ]);
101 return output ? output.split("\n") : [];
102}
103
104function suggestedMessage(report) {
105 if (report.added.length === 1 && !report.changed.length && !report.removed.length) {

Callers 1

Calls 1

shFunction · 0.85

Tested by

no test coverage detected