Go to file
2016-12-31 22:24:10 -07:00
src Adding eslint. 2016-12-31 22:24:10 -07:00
.babelrc Initial commit. 2016-11-26 20:54:53 -07:00
.editorconfig Initial commit. 2016-11-26 20:54:53 -07:00
.eslintrc.json Adding eslint. 2016-12-31 22:24:10 -07:00
.gitignore Initial commit. 2016-11-26 20:54:53 -07:00
.npmignore Preparing for publish. 2016-11-28 11:12:08 -07:00
package.json Adding eslint. 2016-12-31 22:24:10 -07:00
README.md Updating REAME link. 2016-11-29 07:01:52 -07:00
yarn.lock Adding eslint. 2016-12-31 22:24:10 -07:00

A Hyper.app plugin generator for themer.

Installation & usage

Install this module wherever you have themer installed:

yarn add themer-hyper

Then pass themer-hyper as a -t (--template) arg to themer:

themer -c my-colors.js -t themer-hyper -o gen

themer-hyper will generate a themer-hyper-dark.js or themer-hyper-light.js (or both), depending on which color set you passed to themer.

To install your generated plugin, edit ~/.hyper.js and add the path to the localPlugins array:

...
localPlugins: [
  '/path/to/themer-hyper-dark.js`,
],
...