fake-dep-loader.js 171 B

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