@drskillissue/ganko 0.2.82 → 0.2.83

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -25662,14 +25662,16 @@ function walkAndProcess(graph, file, container, context, collector) {
25662
25662
  if (parentAtRule) {
25663
25663
  parentAtRule.rules.push(rule);
25664
25664
  }
25665
- const selectorStrings = parseSelectorList(rule.selectorText);
25666
- for (let j = 0; j < selectorStrings.length; j++) {
25667
- const selectorText = selectorStrings[j];
25668
- if (!selectorText) continue;
25669
- const selector = createSelectorEntity(graph, selectorText, rule);
25670
- graph.addSelector(selector);
25671
- rule.selectors.push(selector);
25672
- graph.registerRuleBySelector(selectorText, rule);
25665
+ if (parentAtRule === null || parentAtRule.kind !== "keyframes") {
25666
+ const selectorStrings = parseSelectorList(rule.selectorText);
25667
+ for (let j = 0; j < selectorStrings.length; j++) {
25668
+ const selectorText = selectorStrings[j];
25669
+ if (!selectorText) continue;
25670
+ const selector = createSelectorEntity(graph, selectorText, rule);
25671
+ graph.addSelector(selector);
25672
+ rule.selectors.push(selector);
25673
+ graph.registerRuleBySelector(selectorText, rule);
25674
+ }
25673
25675
  }
25674
25676
  const ruleChildren = ruleNode.nodes;
25675
25677
  if (ruleChildren && ruleChildren.length > 0) {