Skip to content

Commit

Permalink
chore(build): remove double banner from css file
Browse files Browse the repository at this point in the history
Closes #899
  • Loading branch information
ajoslin committed Mar 27, 2014
1 parent c92cc8f commit 0c6bb24
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -238,11 +238,8 @@ gulp.task('sass', function(done) {
.pipe(concat('ionic.css'))
.pipe(header(banner))
.pipe(gulp.dest(buildConfig.distCss))
.pipe(gulpif(IS_RELEASE_BUILD, minifyCss({
keepSpecialComments: 0
})))
.pipe(gulpif(IS_RELEASE_BUILD, minifyCss()))
.pipe(rename({ extname: '.min.css' }))
.pipe(header(banner))
.pipe(gulp.dest(buildConfig.distCss))
.on('end', done);
});
Expand Down

0 comments on commit 0c6bb24

Please sign in to comment.