UNPKG

module-replace-webpack-plugin

Version:

Replace any imported file/module using a simple webpack plugin

13 lines 294 B
module.exports = function createMockCompiler (data, callback) { return { options: {resolve: {modules: ['node_modules']}}, plugin: function (event, cb) { const nmf = { plugin: function (event, cb) { cb(data, callback) } } cb(nmf) } } }