Skip to content

Instantly share code, notes, and snippets.

@Constaline
Created June 14, 2023 00:38
Show Gist options
  • Save Constaline/f49376a47f34271c11319c7daba4a9b5 to your computer and use it in GitHub Desktop.
Save Constaline/f49376a47f34271c11319c7daba4a9b5 to your computer and use it in GitHub Desktop.
webpack4编译移除LICENSE文件
class RemoveLicenseFilePlugin {
apply(compiler) {
compiler.hooks.emit.tap("RemoveLicenseFilePlugin", (compilation) => {
// compliation参数中有输出的资源
// console.log(compilation.assets);
for (let name in compilation.assets) {
if (name.endsWith("LICENSE.txt")) {
delete compilation.assets[name];
}
}
});
}
}
module.exports = RemoveLicenseFilePlugin;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment