Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: cleaning debug console call
  • Loading branch information
francoismassart committed Apr 4, 2023
commit 3198af497072106e4c221e523fc10544f2bfce3b
2 changes: 0 additions & 2 deletions lib/util/ast.js
Original file line number Diff line number Diff line change
Expand Up @@ -288,11 +288,9 @@ function parseNodeRecursive(rootNode, childNode, cb, skipConditional = false, is
case 'ObjectExpression':
childNode.properties.forEach((prop) => {
const isUsedByClassNamesPlugin = rootNode.callee && rootNode.callee.name === 'classnames';
const isUsedByCVAPlugin = rootNode.callee && rootNode.callee.name === 'cva';

if (prop.key.type === 'Identifier' && ignoredKeys.includes(prop.key.name)) {
// Ignore specific keys defined in settings
console.log('SKIPPING prop.key.name: ' + prop.key.name);
return;
}

Expand Down