generator-ractive-foundation
v0.1.2
Published
Yeoman generator for ractive-foundation
Downloads
8
Maintainers
Readme
generator-ractive-foundation
Getting Started
Install yeoman and the ractive-foundation generator:
npm install -g yo
npm install -g generator-ractive-foundation
Starting a new ractive-foundation project
mkdir my-project
cd my-porject
yo ractive-foundation
This will initialize you new ractive-foundation project
Creating a new component
yo ractive-foundation:component
This will ask you for you directory structure to store your components (defaulting to src/components), and then it will ask for the name of your component.
Working on generator-ractive-foundation
If you want to contrubute / develop generator-ractive-foundation the following can be helpful
# globally install yeoman
npm install -g yo
git clone [email protected]:ractive-foundation/generator-ractive-foundation.git
cd generator-ractive-foundation
npm install
npm link
This will allow you to work on the generator-ractive-foundation code and see
your changes when ever you runt yo ractive-foundation
.