webpack/test/configCases/cache-dependencies/managed-items/loader.js

9 lines
279 B
JavaScript

const path = require("path");
/** @type {import("../../../../").LoaderDefinition} */
module.exports = function (source) {
this.addDependency(path.resolve(__dirname, "node_modules/package/extra.js"));
this.addDependency(path.resolve(__dirname, "extra.js"));
return source;
};