We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f3ac8c commit 8d77402Copy full SHA for 8d77402
packages/bundler-webpack/src/getConfig/shouldExclude.ts
@@ -20,7 +20,6 @@ const EXCLUDE_PKGS = [
20
// https://github.com/umijs/umi/blob/2.x/packages/af-webpack/src/getWebpackConfig/es5ImcompatibleVersions.js
21
export default function (opts: { path: string }) {
22
const pkgPath = getPkgPath(opts);
23
- console.log('>> ', opts.path, pkgPath);
24
if (pkgPath in pkgCache) return pkgCache[pkgPath];
25
const { name } = require(pkgPath); // eslint-disable-line
26
pkgCache[pkgPath] = isMatch({ name });
0 commit comments