【发布时间】:2026-01-06 11:25:02
【问题描述】:
我的项目完全编写为 CommonJS 模块,我不打算更改它。问题是 在使用 gulp 时,我必须使用 ESM 库。
出现这种情况的文件:
const { dest, src } = require('gulp')
const imagemin = require('gulp-imagemin') // This is a ESM. Compiler gives error [ERR_REQUIRE_ESM]
const images = () => {
// We have specific configs for jpeg and png files to try
// to really pull down asset sizes
return src('./src/images/**/*')
.pipe(
imagemin(
[
imagemin.mozjpeg({ quality: 60, progressive: true }),
imagemin.optipng({ optimizationLevel: 5, interlaced: null })
],
{
silent: true
}
)
)
.pipe(dest('./dist/images'))
}
module.exports = images
这是节点给出的错误
Error [ERR_REQUIRE_ESM]: require() of ES Module C:\Users\Lucas\Documents\repos\nexus-materiales\node_modules\gulp-imagemin\index.js from C:\Users\Lucas\Documents\repos\nexus-materiales\gulp-tasks\images.js not supported.
Instead change the require of index.js in C:\Users\Lucas\Documents\repos\nexus-materiales\gulp-tasks\images.js to a dynamic import() which is available in all CommonJS modules.
at Object.<anonymous> (C:\Users\Lucas\Documents\repos\nexus-materiales\gulp-tasks\images.js:2:18)
at Object.<anonymous> (C:\Users\Lucas\Documents\repos\nexus-materiales\gulpfile.js:4:16)
at async Promise.all (index 0) {
code: 'ERR_REQUIRE_ESM'
}
那么,如果它是 ESM,我如何使用 commonJS 包含此文件?这可能吗?
【问题讨论】:
标签: javascript node.js gulp