0.0.4 • Published 5 years ago

fiber-styles v0.0.4

Weekly downloads
1
License
ISC
Repository
github
Last release
5 years ago

fiber-styles

Node package for generating styles from design tokens for Fiber framework.

## Install

npm install fiber-styles --save-dev

Setup

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/"
};