MCPcopy Create free account
hub / github.com/FastLED/FastLED / save_metadata

Function save_metadata

ci/wasm_build_library.py:480–484  ·  view source on GitHub ↗

Save library build metadata for future builds.

(metadata: dict[str, Any])

Source from the content-addressed store, hash-verified

478
479
480def save_metadata(metadata: dict[str, Any]) -> None:
481 """Save library build metadata for future builds."""
482 BUILD_DIR.mkdir(parents=True, exist_ok=True)
483 with open(LIBRARY_METADATA, "w") as f:
484 json.dump(metadata, f, indent=2)
485
486
487def clean_library() -> int:

Callers 1

build_libraryFunction · 0.70

Calls 1

dumpMethod · 0.45

Tested by

no test coverage detected