Skip to content

Commit

Permalink
Merge pull request #364 from EventStore/utf8-base64
Browse files Browse the repository at this point in the history
  • Loading branch information
timothycoleman authored Oct 1, 2023
2 parents 3f80c94 + d4b0143 commit cf81618
Show file tree
Hide file tree
Showing 4 changed files with 335 additions and 160 deletions.
6 changes: 3 additions & 3 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import ngHtml2Js from 'gulp-ng-html2js';
import wrap from 'gulp-wrap';
import jshint from 'gulp-jshint';
import cache from 'gulp-cached';
import uglify from 'gulp-uglify';
import terser from 'gulp-terser';
import minifyCSS from 'gulp-minify-css';
import imagemin from 'gulp-imagemin';
import pngcrush from 'imagemin-pngcrush';
Expand Down Expand Up @@ -137,7 +137,7 @@ gulp.task('dist-js', async function () {

gulp.src('./src/bower_components/requirejs/*.js')
.pipe(concat('requirejs.min.js'))
.pipe(uglify())
.pipe(terser())
.pipe(gulp.dest('./es-dist/js/'));

// copy ace, do not try to minify it :/
Expand All @@ -157,7 +157,7 @@ gulp.task('dist-js', async function () {
// can't figure out better option of doing it :(
rjs(rjsOpts)
.pipe(wrap({ src: './config/ace_workaround.txt'}))
.pipe(uglify())
.pipe(terser())
.pipe(gulp.dest('./es-dist/js/'));
});

Expand Down
Loading

0 comments on commit cf81618

Please sign in to comment.