runner-theme

0.1.0 • Public • Published

Installation

install local or global

npm i runner-theme -D

install theme-chalk

npm i runner-theme-chalk -D

CLI

# init variables file
rt --init [file path]

# watch then build
rt --watch [--config variable file path] [--out theme path]

# build
rt [--config variable file path] [--out theme path] [--minimize]

Node API

var rt = require('runner-theme')

// watch mode
rt.watch({
  config: 'variables/path',
  out: 'output/path'
})

// build
rt.run({
  config: 'variables/path',
  out: 'output/path',
  minimize: true
})

Options

config

Variable file path, default ./runner-variables.css.

out

Theme output path, default ./theme.

browsers

set browsers, default ['ie > 9', 'last 2 versions'].

Config

You can configure some options in runner-theme by putting it in package.json:

{
  "runner-theme": {
    "browsers": ["ie > 9", "last 2 versions"],
    "out": "./theme",
    "config": "./runner-variables.css",
    "theme": "runner-theme-chalk",
    "minimize": false,
    "components": ["button", "input"]
  }
}

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i runner-theme

Weekly Downloads

1

Version

0.1.0

License

MIT

Unpacked Size

7.03 kB

Total Files

7

Last publish

Collaborators

  • itchenjian