Change banner from ugly to pretty

This commit is contained in:
1UP 2015-12-26 22:27:24 +09:00
parent bc8c2f1482
commit 20e0c3e895
2 changed files with 13 additions and 9 deletions

8
animate.min.css vendored

File diff suppressed because one or more lines are too long

View file

@ -32,7 +32,7 @@ var activatedAnimations = activateAnimations();
// ----------------------------
gulp.task('default', function() {
runSequence('concatCSS', 'addHeader', 'prefixes', 'minifyCSS');
runSequence('concatCSS', 'prefixes', 'minifyCSS', 'addHeader');
});
gulp.task('concatCSS', function() {
@ -41,12 +41,6 @@ gulp.task('concatCSS', function() {
.pipe(gulp.dest('./'));
});
gulp.task('addHeader', function() {
return gulp.src('animate.css')
.pipe(header(banner, pkg))
.pipe(gulp.dest('./'));
});
gulp.task('prefixes', function() {
return gulp.src('animate.css')
.pipe(autoprefixer({
@ -63,6 +57,12 @@ gulp.task('minifyCSS', function() {
.pipe(gulp.dest('./'));
});
gulp.task('addHeader', function() {
return gulp.src('*.css')
.pipe(header(banner, pkg))
.pipe(gulp.dest('./'));
});
// ----------------------------
// Helpers/functions
// ----------------------------