@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.
- package/dist/{chunk-CHVGY25Z.js → chunk-F5F7F4LG.js} +11 -9
- package/dist/{chunk-CHVGY25Z.js.map → chunk-F5F7F4LG.js.map} +1 -1
- package/dist/eslint-plugin.cjs +10 -8
- package/dist/eslint-plugin.cjs.map +1 -1
- package/dist/eslint-plugin.js +1 -1
- package/dist/index.cjs +10 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/eslint-plugin.cjs
CHANGED
|
@@ -25662,14 +25662,16 @@ function walkAndProcess(graph, file, container, context, collector) {
|
|
|
25662
25662
|
if (parentAtRule) {
|
|
25663
25663
|
parentAtRule.rules.push(rule);
|
|
25664
25664
|
}
|
|
25665
|
-
|
|
25666
|
-
|
|
25667
|
-
|
|
25668
|
-
|
|
25669
|
-
|
|
25670
|
-
|
|
25671
|
-
|
|
25672
|
-
|
|
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) {
|