mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-13 07:41:08 +01:00
Change banner from ugly to pretty
This commit is contained in:
parent
bc8c2f1482
commit
20e0c3e895
2 changed files with 13 additions and 9 deletions
8
animate.min.css
vendored
8
animate.min.css
vendored
File diff suppressed because one or more lines are too long
14
gulpfile.js
14
gulpfile.js
|
@ -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
|
||||
// ----------------------------
|
||||
|
|
Loading…
Reference in a new issue