A minimal yeoman generator for a web project using gulp, rework, and autoprefixer.
This generator prompts you for your:
- Name
- Github username
- Twitter username
- Project name
- Project description
Using the information to create a project with the following structure:
awesome-project/
- css/
- src/
- all.css
- c.css
- .editorconfig
- .gitignore
- index.html
- gulpfile.js
- LICENSE.md
- package.json
- README.md
npm install -g generator-rework
yo rework
You will then be prompted for some information that will be used to generate a rework project.
After running the generator:
cd project-name
npm install
gulp
open index.html
MIT
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
Crafted with <3 by John Otander (@4lpine).