summaryrefslogtreecommitdiffstats
path: root/gulpfile.js
diff options
context:
space:
mode:
authorSamy Pessé <samypesse@gmail.com>2015-10-06 14:23:10 +0200
committerSamy Pessé <samypesse@gmail.com>2015-10-06 14:23:10 +0200
commit4369bd8f5e39b1b3563e527fb78c16fc3b34b597 (patch)
tree2e4397d33f90ee7bf1034ec4dea1237e611aff36 /gulpfile.js
parent321b24a7b9e7bcdb786ea25c4e1ae481a8796a2b (diff)
downloadgitbook-4369bd8f5e39b1b3563e527fb78c16fc3b34b597.zip
gitbook-4369bd8f5e39b1b3563e527fb78c16fc3b34b597.tar.gz
gitbook-4369bd8f5e39b1b3563e527fb78c16fc3b34b597.tar.bz2
Fix copy of assets and js path in gulpfile
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/gulpfile.js b/gulpfile.js
index 509e621..570b6a0 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -33,12 +33,12 @@ gulp.task('js', function() {
return browserify('./theme/javascript/index.js')
.bundle()
.pipe(source('app.js'))
- .pipe(gulp.dest('./theme/assets/'));
+ .pipe(gulp.dest('./theme/assets/website'));
});
gulp.task('assets', function() {
return gulp.src('./node_modules/font-awesome/fonts/*')
- .pipe(gulp.dest('theme/assets/fonts/fontawesome/'));
+ .pipe(gulp.dest('theme/assets/website/fonts/fontawesome/'));
});
gulp.task('default', ['css', 'js', 'assets'], function() {