Generates the semantic tokens styles file by a simple config file.
$ npm install @s-ui/tokens --save-dev
The configuration files might follow the next structure: tokens.config.ts
By default, it generates the styles in native CSS format.
To see the resulting configuration, you can run the following command:
$ tokens -c <config.manifest.file.js>
To export the result on css format you can use the css script
$ tokens -c <config.manifest.file.js> -o <output.json>
To export the result on json format you can use the JSON script
```sh
$ tokens json -c <config.manifest.file.js> -o <output.json>
To export the result on SCSS format you can use the scss script
$ tokens scss -c <config.manifest.file.js> -o <output.scss>
To see other configurations you can use the -h flag
$ tokens -h
...or use it on each script
$ tokens json -h
$ tokens scss -h