mirror of https://github.com/webpack/webpack.git
11 lines
266 B
JavaScript
11 lines
266 B
JavaScript
|
const path = require("path");
|
||
|
module.exports = function() {
|
||
|
this.callback(null, "module.exports = 'ok';", {
|
||
|
version: 3,
|
||
|
file: "/should/be/removed",
|
||
|
sources: [path.join(__dirname, "folder", "test5.txt")],
|
||
|
sourcesContent: ["Test"],
|
||
|
mappings: "AAAA"
|
||
|
});
|
||
|
};
|