Files
third_party_jsframework/rollup-plugin-uglifyjs.js
lixingchi1 69d7620bb0 adapter to node 18
Signed-off-by: lixingchi1 <lixingchi1@huawei.com>
2024-01-02 18:41:13 +08:00

18 lines
315 B
JavaScript

const uglifyJS = require('uglify-js');
module.exports = function uglifyJs() {
return {
name: 'uglifyjs',
renderChunk(code) {
const res = uglifyJS.minify(code);
if (res.error) {
return;
}
return {
code: res.code,
map: { mappings: '' }
};
}
};
}