@hyperfixi/core 2.2.0 → 2.2.1

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/index.mjs CHANGED
@@ -453,7 +453,8 @@ function tokenize$1(input) {
453
453
  prevToken.value === '{' ||
454
454
  prevToken.value === ',' ||
455
455
  prevToken.value === ';';
456
- if (isCSSSelectorContext && isAlpha(peek(tokenizer))) {
456
+ const isAdjacentToPrev = prevToken && prevToken.end === tokenizer.position;
457
+ if (isCSSSelectorContext && !isAdjacentToPrev && isAlpha(peek(tokenizer))) {
457
458
  tokenizeCSSSelector(tokenizer);
458
459
  continue;
459
460
  }