mirror of
https://github.com/openclaw/clawhub.git
synced 2026-08-14 00:47:57 +00:00
* chore: install OpenClaw design system * feat: adopt shared design system palette * chore: automate design system updates * feat: add weekly design system audit * fix: prevent mobile skills tab overlap * fix: harden design audit automation * fix: validate audit changes before execution * fix: scope design system clone credentials * fix: align audit with installed design release * fix: preserve audit artifacts and access * feat: adopt shared design system on landing page * fix: align icon geometry with design tokens * chore: pin design system to v0.0.1 * chore: pin design system to v0.0.1 * chore: pin design system to v0.0.1 * chore: pin design system to v0.0.1 * chore: pin design system to v0.0.1 * fix: migrate ClawHub UI to design tokens * fix: use public design system installs * fix: use public design system distribution
9 lines
293 B
TypeScript
9 lines
293 B
TypeScript
import { validateCurrentSafeChanges } from "./finalize";
|
|
|
|
const changedFiles = validateCurrentSafeChanges();
|
|
console.log(
|
|
changedFiles.length === 0
|
|
? "audit proposed no source changes"
|
|
: `audit proposed ${changedFiles.length} safe frontend change(s): ${changedFiles.join(", ")}`,
|
|
);
|