Thanks
I received an error in *npm-run-build * in azure pipelines "uglify is not a function". I fixed it like this.
import gulpUglify from 'gulp-uglify-es';
const uglify = gulpUglify.default || gulpUglify;
I think the proper fix should be *gulp-terser *instead of gulp-uglify-es