0.3.0-alpha • Published 7 years ago

generator-particlecss v0.3.0-alpha

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

generator-particle

NPM version Build Status Dependency Status

PARTICLE package generator

A Yeoman generator for particle packages.

Installation

First, install Yeoman and generator-particle using npm (we assume you have pre-installed node.js).

npm install -g yo
npm install -g generator-particlecss

Make a new directory, and cd into it:

mkdir particle-my-component && cd $_

Now scaffold out a PARTICLE package using the yo command (and optionally passing a name for your module):

yo particlecss my-component

Generator

Generates the boilerplate you need for a simple PARTICLE component.

Example:

yo particlecss my-component

Produces:

.
├── .gitignore
├── .stylelintrc
├── .travis.yml
├── CHANGELOG.md
├── index.css
├── LICENSE.md
├── package.json
├── README.md
├── lib/my-component.css
├── test/config.json
├── test/index.html
└── test/test.css

License

MIT