Skip to content

Commit

Permalink
Fix gulpfile to do qt task before qt.min
Browse files Browse the repository at this point in the history
qt.js is now made in <1s and qt.min.js takes longer iso both at the same
time.
  • Loading branch information
labsin committed Aug 8, 2015
1 parent 46ad080 commit 7080bd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Expand Up @@ -36,7 +36,7 @@ gulp.task('qt', function() {
return gulp.src(qtcoreSources).pipe(concat('qt.js')).pipe(gulp.dest('./lib'));
});

gulp.task('min-qt', function() {
gulp.task('min-qt', ['qt'], function() {
return gulp.src('./lib/qt.js').pipe(rename('qt.min.js')).pipe(uglify()).pipe(gulp.dest('./lib'));
});

Expand Down

0 comments on commit 7080bd5

Please sign in to comment.