/** * Single entry point used only for the PREBUILD_CSS step (see rollup.config.mjs). * * Rollup traverses a single entry's import graph in a deterministic, depth-first * order, which keeps the extracted styles.css ordering stable across builds. * Update this file to include any new styles that should be included in the extracted stylesheet. * * Both the main barrel and the primitives barrel are imported here so that every * component's and styled primitive's (under `src/primitives/`) CSS lands in the * extracted stylesheet. */ import "./index"; import "./primitives/index";