Merge pull request #756 from Parbhat/Patch-2

fix: Gulpfile Issue #738 and correct order of PostgreSQL version
This commit is contained in:
Audrey Roy Greenfeld 2016-08-26 11:10:59 -07:00 committed by GitHub
commit de2c7198b2
3 changed files with 16 additions and 16 deletions

View File

@ -127,10 +127,10 @@ Answer the prompts with your own desired options_. For example::
use_heroku [n]: y use_heroku [n]: y
use_compressor [n]: y use_compressor [n]: y
Select postgresql_version: Select postgresql_version:
1 - 9.2 1 - 9.5
2 - 9.3 2 - 9.4
3 - 9.4 3 - 9.3
4 - 9.5 4 - 9.2
Choose from 1, 2, 3, 4 [1]: 1 Choose from 1, 2, 3, 4 [1]: 1
Select js_task_runner: Select js_task_runner:
1 - Gulp 1 - Gulp

View File

@ -16,9 +16,10 @@ var gulp = require('gulp'),
pixrem = require('gulp-pixrem'), pixrem = require('gulp-pixrem'),
uglify = require('gulp-uglify'), uglify = require('gulp-uglify'),
imagemin = require('gulp-imagemin'), imagemin = require('gulp-imagemin'),
exec = require('gulp-exec'), exec = require('child_process').exec,
runSequence = require('run-sequence'), runSequence = require('run-sequence'),
browserSync = require('browser-sync'); browserSync = require('browser-sync').create(),
reload = browserSync.reload;
// Relative paths function // Relative paths function
@ -100,8 +101,8 @@ gulp.task('default', function() {
gulp.task('watch', ['default'], function() { gulp.task('watch', ['default'], function() {
gulp.watch(paths.sass + '/*.scss', ['styles']); gulp.watch(paths.sass + '/*.scss', ['styles']);
gulp.watch(paths.js + '/*.js', ['scripts']); gulp.watch(paths.js + '/*.js', ['scripts']).on("change", reload);
gulp.watch(paths.images + '/*', ['imgCompression']); gulp.watch(paths.images + '/*', ['imgCompression']);
gulp.watch('templates/*.html'); gulp.watch(paths.templates + '/**/*.html').on("change", reload);
}); });

View File

@ -16,20 +16,19 @@
"pixrem": "~1.3.1", "pixrem": "~1.3.1",
"time-grunt": "~1.2.1" "time-grunt": "~1.2.1"
{% elif cookiecutter.js_task_runner == 'Gulp' %} {% elif cookiecutter.js_task_runner == 'Gulp' %}
"browser-sync": "^2.12.10", "browser-sync": "^2.14.0",
"del": "^2.2.0", "del": "^2.2.2",
"gulp": "^3.9.1", "gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.0", "gulp-autoprefixer": "^3.1.1",
"gulp-cssnano": "^2.1.2", "gulp-cssnano": "^2.1.2",
"gulp-exec": "^2.1.2", "gulp-imagemin": "^3.0.3",
"gulp-imagemin": "^3.0.1",
"gulp-pixrem": "^1.0.0", "gulp-pixrem": "^1.0.0",
"gulp-plumber": "^1.1.0", "gulp-plumber": "^1.1.0",
"gulp-rename": "^1.2.2", "gulp-rename": "^1.2.2",
"gulp-sass": "^2.3.1", "gulp-sass": "^2.3.2",
"gulp-uglify": "^1.5.3", "gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.7", "gulp-util": "^3.0.7",
"run-sequence": "^1.2.1" "run-sequence": "^1.2.2"
{% endif %} {% endif %}
}, },
"engines": { "engines": {