UNPKG

json-q

Version:

Retrieves values from JSON objects (and JavaScript objects) by css-selector-like query (includes attribute filters and array flattening).

17 lines (15 loc) 538 B
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ var ExternalModuleFactoryPlugin = require("./ExternalModuleFactoryPlugin"); function ExternalsPlugin(type, externals) { this.type = type; this.externals = externals; } module.exports = ExternalsPlugin; ExternalsPlugin.prototype.apply = function(compiler) { compiler.plugin("compile", function(params) { params.normalModuleFactory.apply(new ExternalModuleFactoryPlugin(this.type, this.externals)); }.bind(this)); };