mix corex.design (Corex v0.1.0-beta.2)

View Source

Copies the Corex design asset tree from the corex package priv/ directory into your app's assets/corex/.

The copy is safe by default — it skips any target that already exists. Pass --force to overwrite.

Options

  • --designex — also copy the design token source tree into assets/corex/design/
  • --force — overwrite the target(s) if they already exist

Examples

mix corex.design                   # first-time copy; no-op if already present
mix corex.design --force           # overwrite existing assets/corex/
mix corex.design --designex        # also copy the token source tree
mix corex.design --designex --force