generator-locawebstyle
v2.0.2
Published
A generator for locawebstyle.
Downloads
6
Maintainers
Readme
generator-locawebstyle
A generator for Locaweb Style.
What's Yeoman (yo)?
Yeoman helps you kickstart new projects, prescribing best practices and tools to help you stay productive.
Installing yo
npm i -g yo
Installing generator-locawebstyle
To scaffold a web application, you'll need to install the generator:
npm i -g generator-locawebstyle
Make a new directory, and cd into it:
mkdir my-new-project && cd $_
Finally, initiate the generator:
yo locawebstyle
Running npm start
for you to install the required dependencies.
Layout
app/
├── css/
│ ├── app.css
├── img/
│ ├──
├── js/
│ ├── app.js
├── node_modules/
│ ├── jquery/
│ ├── locawebstyle/
│ ├── normalize-css/
├── index.html
How This Generator Works
After finishing the implementation of your application, simply run the following command to deploy your project.
grunt
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Test your changes to the best of your ability.
- Update the documentation to reflect your changes if they add or changes current functionality.
- Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request