1.1.0 • Published 6 years ago

styletron-themer v1.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

Styletron Themer

Styletron Themer is a toolkit for building themable components in React. It takes the ideas from the official styletron-react package and expands upon them.

Requirements

You should be using React already. And if you're here, you're probably using Styletron to manage CSS in JavaScript. (If you're not, you should!)

Documentation

Full documentation can be found here. (Docs will be moving soon; bookmark this page, not that one.)

Installation

npm install --save styletron-themer

There are some unsurprising peer dependencies:

  • react
  • prop-types
  • styletron-utils

Building & testing

The test suite can be run with one of two commands. The first (test:ci) runs the tests and exits; the second (test) enters watch mode.

npm run test:ci
npm run test

The files in the dist directory are built and committed to git. They are generated with rollup, using the following script:

npm run build

You can also run the linter (npm run lint or npm run lint:fix).

The linter is run prior to any commit. If you try to commit but it seems to fail, check your console, as there are likely to be linting errors.