Yeoman generator for creating static website/templates using Sass, Rollup, Pug, and Gulp, used by Lighting Beetle.
(sudo) npm install -g yo
(sudo) npm install -g gulp
- Gulp (Task Manager)
- Sass (LibSass) (CSS Preprocessor)
- Pug (HTML templating)
- ES2016 compilation to ES5 using Babel
- ES2015 modules bundling with Rollup.js
- Bootstrap (Frontend framework) (Sass version) (optional)
- Foundation (Frontend framework) (optional)
- Modernizr (HTML5/CSS3 features detection) (optional)
- jQuery 2.x/3.x(feature-rich JavaScript library) (optional)
- LightingFly (SCSS mixins library) (optional)
- CSS autoprefixing (autoprefixer)
- Webserver with liverelaod (browserSync)
- Pug compilation
- Sass compilation
- YAML/JSON data sources for templates
- CSS/JS concating and minification (cssnano)
- JS linting (eslint with airbnb config)
- ES2016 transpiling (babel)
- ES2015 modules bundling (rollup)
- Image optimaliztion (imagemin)
- Lean Modernizr builds
- Improved file caching
- Deploying via rsync/sftp
- Multi-language templates support (optional)
- Advanced routing in development
- Install via npm
(sudo) npm install -g generator-lb
- Create folder for your project and run inside:
yo lb
- Complete installation
- ?
- Profit
Gulpfile contains some useful tasks:
gulp serve
for development with livereloadgulp build
for building from source todist
foldergulp serve:dist
for build previewgulp deploy
for deploying on dev server via sftp (config is in .env file)gulp deploy:prod
for deploying on prod server via sftp (config is in .env file)gulp help
for information about other tasks
.
+-- app
+-- fonts
+-- icons
+-- images
+-- scripts
+-- external
+-- jquery.js
+-- modules
+-- plugins
+-- main.js
+-- styles
+-- modules
+-- plugins
+-- main.scss
+-- views
+-- data
+-- index.[json/yaml]
+-- helpers
+-- layouts
+-- _default.jade
+-- modules
+-- _footer.jade
+-- _header.jade
+-- index.jade
+-- .htaccess
+-- favicon.ico
+-- robots.txt
+-- bower_components
+-- dist
+-- gulp
+-- tasks
+-- browserSync.js
+-- build.js
+-- clean.js
+-- copy.js
+-- default.js
+-- deploy.js
+-- images.js
+-- modernizr.js (optional)
+-- rev.js
+-- scripts.js
+-- serve.js
+-- styles.js
+-- templates.js
+-- watch.js
+-- utils
+-- buildHelper.js
+-- handleError.js
+-- config.js
+-- node_modules
+-- .babelrc
+-- .editorconfig
+-- .env
+-- .gitattributes
+-- .gitignore
+-- .eslintrc
+-- .yo-rc.json
+-- gulpfile.js
+-- package.json
- Gulp tasks can be configured inside
config.js
file ingulp
folder. - Data for jade templates can by stored as YAML/JSON objects inside.
app/views/data/
- Build can be forced with
gulp build --force
- Adam Močkoř (mockor@lbstudio.sk)