Skip to content
This repository was archived by the owner on Aug 20, 2021. It is now read-only.

Commit 4369bd8

Browse files
committedOct 6, 2015
Fix copy of assets and js path in gulpfile
1 parent 321b24a commit 4369bd8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎gulpfile.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ gulp.task('js', function() {
3333
return browserify('./theme/javascript/index.js')
3434
.bundle()
3535
.pipe(source('app.js'))
36-
.pipe(gulp.dest('./theme/assets/'));
36+
.pipe(gulp.dest('./theme/assets/website'));
3737
});
3838

3939
gulp.task('assets', function() {
4040
return gulp.src('./node_modules/font-awesome/fonts/*')
41-
.pipe(gulp.dest('theme/assets/fonts/fontawesome/'));
41+
.pipe(gulp.dest('theme/assets/website/fonts/fontawesome/'));
4242
});
4343

4444
gulp.task('default', ['css', 'js', 'assets'], function() {

0 commit comments

Comments
 (0)
This repository has been archived.