How teams wired v2 into 2026-era builds.
How the engine does it#
The canonical v2 setup: a Node build script runs the generator, writes dist CSS, webpack bundles it. Watch mode via node --watch.
Example#
scripts: { css: 'node build.mjs', watch: 'node --watch build.mjs' }From v2 to v3#
Everything in this article survives the upgrade — the v2 → v3 migration guide keeps the generator API stable while fixing spacing and responsive bugs.
