zhaosn@collei:~/Documents/Blog$ gulp file:///home/zhaosn/Documents/Blog/gulpfile.mjs:4 import {uglify} from 'gulp-uglify-es';//https://gitlab.com/itayronen/gulp-uglify-es ^^^^^^ SyntaxError: Named export 'uglify' not found. The requested module 'gulp-uglify-es' is a CommonJS module, which may not support all module.exports as named exports. CommonJS modules can always be imported via the default export, for example using:
import pkg from 'gulp-uglify-es'; const {uglify} = pkg;
zhaosn@collei:~/Documents/Blog$ gulp file:///home/zhaosn/Documents/Blog/gulpfile.mjs:4 import {plugin as uglify} from 'gulp-uglify-es';//https://gitlab.com/itayronen/gulp-uglify-es ^^^^^^ SyntaxError: Named export 'plugin' not found. The requested module 'gulp-uglify-es' is a CommonJS module, which may not support all module.exports as named exports. CommonJS modules can always be imported via the default export, for example using:
import pkg from 'gulp-uglify-es'; const {plugin: uglify} = pkg;