Skip to content

Commit

Permalink
dont add banner to min files
Browse files Browse the repository at this point in the history
  • Loading branch information
arshaw committed Mar 19, 2019
1 parent 12e7cbb commit a5db691
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tasks/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ const modify = require('gulp-modify-file')
const rootPackageConfig = require('../package.json')

gulp.task('build', [ 'build:raw' ], function() {
return gulp.src('dist/*/*.{js,css}', { base: '.' })
return gulp.src([
'dist/*/*.{js,css}',
'!**/*.min.js',
'!**/*.min.css'
], { base: '.' })
.pipe(
modify(modifySource)
)
Expand Down

0 comments on commit a5db691

Please sign in to comment.