UNPKG

json-q

Version:

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

15 lines (12 loc) 448 B
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ var OldNodeWatchFileSystem = require("./node/OldNodeWatchFileSystem"); function OldWatchingPlugin() {} module.exports = OldWatchingPlugin; OldWatchingPlugin.prototype.apply = function(compiler) { compiler.plugin("environment", function() { compiler.watchFileSystem = new OldNodeWatchFileSystem(compiler.inputFileSystem); }); };