Skip to content

Commit 5f052c8

Browse files
committed
tweaking build
1 parent 3033791 commit 5f052c8

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

gulp/tasks/scripts.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ gulp.task('scripts', function() {
1313
return gulp.src(['src/js/**/*.js'])
1414
.pipe(gulpif(global.mode !== 'dev',uglify()))
1515
.on('error', handleErrors)
16+
.pipe(gulp.dest(global.destination + '/js'))
1617
.pipe(gulpif(global.destination != 'dev', rename({suffix: '.min'})))
1718
.pipe(gulp.dest(global.destination + '/js'));
1819
});

gulp/tasks/styles.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ gulp.task('styles', function () {
2020
.pipe(autoprefixer({
2121
browsers: ['last 2 versions', '> 1%', 'ie 9', 'ie 10']
2222
}))
23+
.pipe( gulp.dest(global.destination + '/css'))
2324
.pipe(gulpif(global.destination != 'dev', rename({suffix: '.min'})))
2425
.pipe( gulp.dest(global.destination + '/css'));
2526
});

0 commit comments

Comments
 (0)