Capital Framework Yeoman generator
npm install generator-cfYeoman generator for Capital Framework.
Install Yeoman and the Capital Framework generator:
``bash`
npm install -g yo generator-cf
Create a new project directory and cd to it:`bash`
mkdir my-new-project && cd $_
Run the Capital Framework generator:
`bash`
yo cf
Compile the assets:
`bash`
grunt
View the demo page:
`bash`
open ./dist/index.html
Build your project!
To hack on this generator, fork this repo, clone it and use npm link:
`bash`
$ cd generator-cf
$ npm link
$ cd some-empty-directory-somewhere
$ yo cf
Edit the source files and re-run yo cf to see the changes.npm test` from the project's root.
Please modify the current tests or write new tests if you add functionality to the generator.
Tests can be executed by running
----