我正在创建新的插件...我只需要获取原始文件名(无哈希)
apply(compiler) {
compiler.hooks.emit.tap('REMOVE_HASH',
(compilation) => {
compilation.chunks.forEach((chunk) => {
const jsFiles = chunk.files.filter(f => regexJSExtension.test(f));
jsFiles.forEach((file) => {
console.log('JS Files', file); // How to remove hash from file?
});
});
});
}
我要..对于每个生成的
js
文件。从文件名中删除哈希并登录console.log
。