Yeoman generator for a Jekyll-based web app.
v3.1
<script>
) in a designated folder.
+-- .babelrc
+-- .buildpacks
+-- .editorconfig
+-- .gitignore
+-- .jshintrc
+-- .taskconfig
+-- app
| +-- .jshintrc
| +-- _assets
| | +-- stylesheets
| | | +-- base
| | | | +-- definitions.scss
| | | | +-- layout.scss
| | | | +-- typography.scss
| | | +-- main.scss
| | +-- fonts
| | +-- images
| | +-- javascripts
| | | +-- main.js
| | +-- vendor
| | +-- videos
| +-- _data
| +-- _drafts
| +-- _includes
| +-- _layouts
| | +-- compress.html
| | +-- default.html
| +-- _posts
| +-- 404.html
| +-- 500.html
| +-- index.html
| +-- apple-touch-icon-180x180-precomposed.png
| +-- apple-touch-icon-152x152-precomposed.png
| +-- apple-touch-icon-144x144-precomposed.png
| +-- apple-touch-icon-120x120-precomposed.png
| +-- apple-touch-icon-114x114-precomposed.png
| +-- apple-touch-icon-76x76-precomposed.png
| +-- apple-touch-icon-72x72-precomposed.png
| +-- apple-touch-icon-60x60-precomposed.png
| +-- apple-touch-icon-57x57-precomposed.png
| +-- apple-touch-icon-precomposed.png
| +-- browserconfig.xml
| +-- favicon.ico
| +-- favicon.png
| +-- large.png
| +-- launcher-icon-0-75x.png
| +-- launcher-icon-1-5x.png
| +-- launcher-icon-1x.png
| +-- launcher-icon-2x.png
| +-- launcher-icon-3x.png
| +-- launcher-icon-4x.png
| +-- manifest.json
| +-- og-image.png
| +-- robots.txt
| +-- square.png
| +-- tiny.png
| +-- wide.png
+-- node_modules
+-- public
+-- test
| +-- .jshintrc
| +-- index.js
+-- vendor
| +-- bundle
+-- _config.yml
+-- _prose.yml
+-- circle.yml
+-- Gemfile
+-- gulpfile.babel.js
+-- package.json
+-- README.md
+-- server.js
Install yo
and generator-vars-jekyll
:
$ npm install -g yo generator-vars-jekyll
Create a new directory for your project and cd
into it:
$ mkdir new-project-name && cd $_
Generate the project:
$ yo vars-jekyll [app-name]
For details on initial setup procedures of the project, see its generated README.md
file.
require-dir
dependency is no longer necessary and is removed from package.json
../tasks/.taskconfig
.app/_assets
(instead of app/assets
). These files are no longer generated by the Jekyll generator and are now being deployed by the Gulp pipeline. This is for faster development iteration using gulp-watch
. As a result, liquid templating static files is discouraged.favicon.png
, Apple touch and Open Graph specific icons are now moved to app/_assets/images
. favicon.ico
remains in the root directory.gulp-imagemin
is removed because it is the most taxing task in the Gulp pipeline. Images should be optimized outside of the Gulp pipeline instead.2.0.0
to 2.2.1
.