0.0.4 • Published 6 years ago
fiber-styles v0.0.4
fiber-styles
Node package for generating styles from design tokens for Fiber framework.
## Install
npm install fiber-styles --save-devSetup
Inlude the script in node application like
require("fiber-styles");Configure
Design tokens are stored in tailwind.config.js using the Tailwindcss format.
The output path of the styles.css file can be specified by setting the value of config.output to the desired path. If no path is specified it will look for static/. Currently it will not create the directory if it does not exist.
module.exports = {
output: "dist/"
};