2013-02-14 00:00:07 +08:00
|
|
|
/*
|
|
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
|
|
Author Tobias Koppers @sokra
|
|
|
|
*/
|
2014-03-06 02:56:53 +08:00
|
|
|
var ExternalsPlugin = require("../ExternalsPlugin");
|
2013-02-14 00:00:07 +08:00
|
|
|
|
2015-07-13 06:20:09 +08:00
|
|
|
function NodeTargetPlugin() {}
|
2014-03-06 02:56:53 +08:00
|
|
|
|
2013-02-14 00:00:07 +08:00
|
|
|
module.exports = NodeTargetPlugin;
|
|
|
|
NodeTargetPlugin.prototype.apply = function(compiler) {
|
2014-03-06 02:56:53 +08:00
|
|
|
new ExternalsPlugin("commonjs", Object.keys(process.binding("natives"))).apply(compiler);
|
2015-07-08 20:39:02 +08:00
|
|
|
};
|