Understand the Example and Fixture Modes
mainThe project distinguishes between two distinct catalog modes to separate user-facing demonstrations from internal debugging tools:
examples(Default Mode): A curated, polished catalog of product-style surfaces (e.g., Messaging, Commerce) designed for users. This is the default mode for all standard scripts.fixtures(Internal Mode): A catalog containing existing screens, debug behaviors, comparison/benchmark demos, and internal validation tools. This mode is accessed via explicit scripts.
Key Constraints:
- Modes are selected via environment variables or package scripts, not via URL path segments.
- The two modes are self-contained; do not add in-app links between
examplesandfixtures. example-webmust not import files from theexample/(native) directory; all shared logic must reside in a neutral shared location.