webpack核心库,通过不同阶段完成事件任务。使用发布订阅模式。 let {SyncHook} = require("tapable");let hook = new SyncHook();hook.tap("something", ()=>{ console.log("some thing");})hook.call();