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