generator-webapp-del v0.1.8
Customized Web app generator 
Yeoman generator that scaffolds out a front-end web app with stuff I like to use.
Features
- Most things copied from generator-webapp
Getting Started
- Install:
npm install -g generator-webapp-del - Run:
yo webapp-del - Run
gruntfor building andgrunt servefor preview *
Third-Party Dependencies
(HTML/CSS/JS/Images/etc)
Third-party dependencies are managed with bower-install. Add new dependencies using Bower and then run the Grunt task to load them:
bower install --save jquery
grunt bower-installThis works if the package author has followed the Bower spec. If the files are not automatically added to your index.html, check with the package's repo for support and/or file an issue with them to have it updated.
To manually add dependencies, bower install depName --save to get the files, then add a script or style tag to your index.html or an other appropriate place.
Grunt Serve Note
Note: grunt server was previously used for previewing in earlier versions of the project and is being deprecated in favor of grunt serve.
Options
--skip-installSkips the automatic execution of
bowerandnpmafter scaffolding has finished.--test-framework=<framework>Defaults to
mocha. Can be switched for another supported testing framework likejasmine.