@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.
@@ -28384,14 +28384,16 @@ function walkAndProcess(graph, file, container, context, collector) {
28384
28384
  if (parentAtRule) {
28385
28385
  parentAtRule.rules.push(rule);
28386
28386
  }
28387
- const selectorStrings = parseSelectorList(rule.selectorText);
28388
- for (let j = 0; j < selectorStrings.length; j++) {
28389
- const selectorText = selectorStrings[j];
28390
- if (!selectorText) continue;
28391
- const selector = createSelectorEntity(graph, selectorText, rule);
28392
- graph.addSelector(selector);
28393
- rule.selectors.push(selector);
28394
- graph.registerRuleBySelector(selectorText, rule);
28387
+ if (parentAtRule === null || parentAtRule.kind !== "keyframes") {
28388
+ const selectorStrings = parseSelectorList(rule.selectorText);
28389
+ for (let j = 0; j < selectorStrings.length; j++) {
28390
+ const selectorText = selectorStrings[j];
28391
+ if (!selectorText) continue;
28392
+ const selector = createSelectorEntity(graph, selectorText, rule);
28393
+ graph.addSelector(selector);
28394
+ rule.selectors.push(selector);
28395
+ graph.registerRuleBySelector(selectorText, rule);
28396
+ }
28395
28397
  }
28396
28398
  const ruleChildren = ruleNode.nodes;
28397
28399
  if (ruleChildren && ruleChildren.length > 0) {
@@ -41321,4 +41323,4 @@ export {
41321
41323
  rules3,
41322
41324
  runCrossFileRules
41323
41325
  };
41324
- //# sourceMappingURL=chunk-CHVGY25Z.js.map
41326
+ //# sourceMappingURL=chunk-F5F7F4LG.js.map