# HG changeset patch # User Ludovic Chabant # Date 1453963566 28800 # Node ID cb92d6eca5438aa7e0e492da71e35e4e543e988a # Parent 13987668311c2bcd8408d381f1bf9f6563614af2 cm: Fix Gulp config. diff -r 13987668311c -r cb92d6eca543 gulpfile.js --- a/gulpfile.js Wed Jan 27 20:12:37 2016 -0800 +++ b/gulpfile.js Wed Jan 27 22:46:06 2016 -0800 @@ -22,7 +22,7 @@ //.pipe(sourcemaps.write()) .pipe(rename({suffix: '.min'})) .pipe(minify()) - .pipe(gulp.dest('../foodtruck/static/css')); + .pipe(gulp.dest('foodtruck/static/css')); }); gulp.task('sass:watch', function() { return gulp.watch('foodtruckui/assets/sass/**/*.scss', ['sass']); @@ -36,6 +36,7 @@ 'bower_components/bootstrap-sass/assets/javascripts/bootstrap/button.js', 'bower_components/bootstrap-sass/assets/javascripts/bootstrap/collapse.js', 'bower_components/bootstrap-sass/assets/javascripts/bootstrap/dropdown.js', + 'bower_components/bootstrap-sass/assets/javascripts/bootstrap/modal.js', 'bower_components/bootstrap-sass/assets/javascripts/bootstrap/tooltip.js', 'bower_components/bootstrap-sass/assets/javascripts/bootstrap/transition.js', 'foodtruckui/assets/js/**/*.js' @@ -45,7 +46,7 @@ .pipe(sourcemaps.write()) .pipe(rename({suffix: '.min'})) //.pipe(uglify()) - .pipe(gulp.dest('../foodtruck/static/js')); + .pipe(gulp.dest('foodtruck/static/js')); }); gulp.task('js:watch', function() { return gulp.watch('foodtruckui/assets/js/**/*.js', ['js']); @@ -57,7 +58,7 @@ 'bower_components/bootstrap-sass/assets/fonts/bootstrap/*', 'bower_components/Ionicons/fonts/*' ]) - .pipe(gulp.dest('../foodtruck/static/fonts')); + .pipe(gulp.dest('foodtruck/static/fonts')); }); gulp.task('images', function() { @@ -65,7 +66,7 @@ 'bower_components/bootstrap-sass/assets/images/*', 'foodtruckui/assets/img/*' ]) - .pipe(gulp.dest('../foodtruck/static/img')); + .pipe(gulp.dest('foodtruck/static/img')); }); // Launch tasks