fake-dep-loader.js 207 B

123456
  1. const Path = require('path');
  2. module.exports = function FakeDepLoader(source, sourcemap) {
  3. this.query.files.forEach(f => this.addDependency(Path.resolve(f)));
  4. this.callback(null, source, sourcemap);
  5. };