@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
|
@@ -28384,14 +28384,16 @@ function walkAndProcess(graph, file, container, context, collector) {
|
|
|
28384
28384
|
if (parentAtRule) {
|
|
28385
28385
|
parentAtRule.rules.push(rule);
|
|
28386
28386
|
}
|
|
28387
|
-
|
|
28388
|
-
|
|
28389
|
-
|
|
28390
|
-
|
|
28391
|
-
|
|
28392
|
-
|
|
28393
|
-
|
|
28394
|
-
|
|
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-
|
|
41326
|
+
//# sourceMappingURL=chunk-F5F7F4LG.js.map
|