mirror of https://github.com/webpack/webpack.git
7 lines
197 B
JavaScript
7 lines
197 B
JavaScript
|
exports.pitch = async function (remaining) {
|
||
|
const result = await this.importModule(
|
||
|
this.resourcePath + ".webpack[javascript/auto]" + "!=!" + remaining
|
||
|
);
|
||
|
return result.default || result;
|
||
|
};
|