Skip to content

Commit

Permalink
Changed libs to js in GulpFile.js
Browse files Browse the repository at this point in the history
  • Loading branch information
usamamuneerchaudhary committed May 12, 2017
1 parent ac4fdd0 commit affab5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions theme/GulpFile.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ gulp.task('images', function () {
* Scripts Task
*/
gulp.task('scripts', function(){
return gulp.src(['resources/libs/**/*.js'])
return gulp.src(['resources/js/**/*.js'])
.pipe(concat('all.min.js'))
.pipe(uglify())
.pipe(gulp.dest('assets/js/'))
Expand All @@ -43,7 +43,7 @@ gulp.task('scripts', function(){
*/
gulp.task('watch', function () {
gulp.watch('resources/sass/**/*.scss', ['styles']);
gulp.watch('resources/libs/*.js', ['scripts']);
gulp.watch('resources/js/*.js', ['scripts']);
});

/**
Expand Down

0 comments on commit affab5d

Please sign in to comment.