Skip to content

Commit

Permalink
fix(build): use .min.css for .all.js to prevent the string concat…
Browse files Browse the repository at this point in the history
…enation (#1268)
  • Loading branch information
SanderElias authored and limonte committed Oct 29, 2018
1 parent 19499bd commit f18b4bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ gulp.task('build:styles', () => {
*/
gulp.task('build:standalone', () => {
const prettyJs = gulp.src('dist/sweetalert2.js')
const prettyCssAsJs = gulp.src('dist/sweetalert2.css')
const prettyCssAsJs = gulp.src('dist/sweetalert2.min.css')
.pipe($.css2js())
const prettyStandalone = merge(prettyJs, prettyCssAsJs)
.pipe($.concat('sweetalert2.all.js'))
Expand Down

0 comments on commit f18b4bc

Please sign in to comment.