diff --git a/generators/boilerplate/templates/README.md b/generators/boilerplate/templates/README.md index 4e56304..98ca379 100644 --- a/generators/boilerplate/templates/README.md +++ b/generators/boilerplate/templates/README.md @@ -5,26 +5,27 @@ ## To get started ```sh -$ gulp +$ gulp [--prod] ``` And you'll have a new Jekyll site generated for you and displayed in your -browser. Neato. +browser. Neato. If you want to run it with production settings, just add +`--prod`. ## Usage ```sh -$ gulp build -``` - -```sh -$ gulp publish +$ gulp build [--prod] ``` ```sh $ gulp deploy ``` +## Github +For more information on how to use your new project, please refer to the [README +on Github](https://github.com/sondr3/generator-jekyllized). + ## Owner > [<%= authorName %>](<%= projectURL %>) diff --git a/generators/gulp/templates/gulpfile.babel.js b/generators/gulp/templates/gulpfile.babel.js index c57648b..c309adc 100644 --- a/generators/gulp/templates/gulpfile.babel.js +++ b/generators/gulp/templates/gulpfile.babel.js @@ -307,7 +307,7 @@ gulp.task('clean', gulp.series('clean:assets', 'clean:gzip')); // 'gulp rebuild' -- WARNING: Erases your assets and built site, use only when // you need to do a complete rebuild gulp.task('rebuild', gulp.series('clean:dist', 'clean:assets', -'gulp clean:images', 'clean:metadata')); +'clean:images', 'clean:metadata')); // 'gulp check' -- checks your Jekyll configuration for errors and lint your JS gulp.task('check', gulp.series('jekyll:doctor', 'lint')); diff --git a/generators/jekyll/templates/Gemfile b/generators/jekyll/templates/Gemfile index 8b85304..56ee11b 100644 --- a/generators/jekyll/templates/Gemfile +++ b/generators/jekyll/templates/Gemfile @@ -6,10 +6,10 @@ gem 'classifier-reborn' # jekyll plugins gem 'jekyll-archives' -gem 'jekyll-sitemap' -gem 'jekyll-paginate' gem 'jekyll-feed' gem 'jekyll-gist' +gem 'jekyll-paginate' +gem 'jekyll-sitemap' # octopress gem 'octopress', '~> 3.0'