changeset 605:cb92d6eca543

cm: Fix Gulp config.
author Ludovic Chabant <ludovic@chabant.com>
date Wed, 27 Jan 2016 22:46:06 -0800
parents 13987668311c
children f1e03f85f14d
files gulpfile.js
diffstat 1 files changed, 5 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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