📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-07-10 16:04:20 +00:00
parent 2bb0dc8c1d
commit 92c0c3f687
594 changed files with 55224 additions and 19038 deletions
+4 -6
View File
@@ -17,12 +17,10 @@ from pathlib import Path
REPO_ROOT = Path(__file__).resolve().parents[1]
DATA_DIR = REPO_ROOT / "src" / "ui-ux-pro-max" / "data"
# These files are retained as design/reference notes, not runtime datasets.
# They intentionally use free-form CSV-ish content and are not loaded by core.py.
REFERENCE_ONLY = {
DATA_DIR / "design.csv",
DATA_DIR / "draft.csv",
}
# Every CSV under data/ is a runtime dataset loaded by core.py.
# (Former reference-only notes design.csv/draft.csv were removed: they were
# unused by the runtime and contained prompt-shaped free-form text.)
REFERENCE_ONLY: set[Path] = set()
def validate_file(path: Path) -> list[str]: