mirror of
https://gitee.com/layui/layui.git
synced 2025-11-08 18:34:53 +08:00
20 lines
407 B
JavaScript
20 lines
407 B
JavaScript
/**
|
|
* Rollup Custom Plugins
|
|
*/
|
|
|
|
// 压缩后添加头部注释
|
|
export function banner(options = {}) {
|
|
const bannerComment = options.comment || '';
|
|
return {
|
|
name: 'banner',
|
|
generateBundle(_, bundle) {
|
|
// chunk 生成后
|
|
for (const file of Object.values(bundle)) {
|
|
if (file.type === 'chunk') {
|
|
file.code = bannerComment + file.code;
|
|
}
|
|
}
|
|
},
|
|
};
|
|
}
|