generator-particle
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 yonpm 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