Yeoman generator that scaffolds out a front-end web app using Gulp for the build process.
Please see our gulpfile.js for up to date information on what we support.
- Compile swig templates
- CSS Autoprefixing (new)
- Built-in preview server with LiveReload
- Automagically compile Sass
- Automagically lint your scripts
- Awesome Image Optimization (via OptiPNG, pngquant, jpegtran and gifsicle)
- Automagically wire-up dependencies installed with Bower (when
gulp watch
orgulp wiredep
) - TODO: Mocha Unit Testing with PhantomJS
- TODO: Optional - Leaner Modernizr builds (new)
For more information on what generator-swulp
can do for you, take a look at the Gulp plugins used in our package.json
.
- Install:
npm install -g generator-swulp
- Run:
yo swulp
- Run
gulp
for building andgulp watch
for preview
(HTML/CSS/JS/Images/etc)
To install dependencies, run bower install depName --save
to get the files, then add a script
or style
tag to your index.html
or an other appropriate place.
-
--skip-install
Skips the automatic execution of
bower
andnpm
after scaffolding has finished. -
--test-framework=<framework>
Defaults to
mocha
. Can be switched for another supported testing framework likejasmine
.
@TODO