data-provider-temporary
Version:
Library that helps with server-to-client synchronization of data
16 lines (12 loc) • 348 B
JavaScript
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
;
const ExternalsPlugin = require("../ExternalsPlugin");
class NodeTargetPlugin {
apply(compiler) {
new ExternalsPlugin("commonjs", Object.keys(process.binding("natives"))).apply(compiler);
}
}
module.exports = NodeTargetPlugin;