不必要的输出信息

This commit is contained in:
Xu Chang 2023-11-27 11:27:05 +08:00
parent dbc3dbaa75
commit 4b21beaa55
1 changed files with 0 additions and 1 deletions

View File

@ -10,7 +10,6 @@ module.exports = (babel) => {
const { base } = parse(filename);
const node = path.node;
if (['index.ts', 'index.js'].includes(base) && t.isCallExpression(node) && t.isIdentifier(node.callee) && node.callee.name === 'OakComponent') {
console.log(filename, base);
injectGetRender(node, cwd, filename, 'web');
}
},