Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Do not emit @keyframes in @theme reference #16120

Merged
merged 5 commits into from
Jan 31, 2025

Conversation

RobinMalfait
Copy link
Member

@RobinMalfait RobinMalfait commented Jan 31, 2025

This PR fixes na issue where @keyframes were emitted if they wre in a @theme reference and anothe @theme {} (that is not a reference) was present.

E.g.:

@reference "tailwindcss";

@theme {
  /* ... */
}

Produces:

:root, :host {
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

With this PR, the produced CSS looks like this instead:

:root, :host {
}

Note: the empty :root, :host will be solved in a subsequent PR.

Test plan

Added some unit tests, and a dedicated integration test.

@RobinMalfait RobinMalfait requested a review from a team as a code owner January 31, 2025 13:39
Comment on lines +457 to +462
// Do not track/emit `@keyframes`, if they are part of a `@theme reference`.
if (themeOptions & ThemeOptions.REFERENCE) {
replaceWith([])
return WalkAction.Skip
}

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm my initial thought was that we might want this in the Theme just like the --animate-* variables and just also add the themeOption for bookkeeping but we don't really do any validations for that anymore afterwards so if this works, it should be fine too 👍

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah this just never really tracks it in Theme. It does mean that animate-foo won't emit the @keyframes, but that sounds correct to me because the idea is that this can be used in <style> blocks, assuming the @keyframes exist somewhere else already.

Just looking into why the other integration test fails. 😅

@RobinMalfait RobinMalfait force-pushed the fix/do-not-emit-keyframes-in-reference-theme branch from 11696c9 to 1d86bd1 Compare January 31, 2025 13:46

Verified

This commit was signed with the committer’s verified signature.
eliottness Eliott Bouhana

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
@RobinMalfait RobinMalfait force-pushed the fix/do-not-emit-keyframes-in-reference-theme branch from fb3435d to 177b28e Compare January 31, 2025 13:55
@RobinMalfait RobinMalfait enabled auto-merge (squash) January 31, 2025 13:56
@RobinMalfait RobinMalfait merged commit 3aa0e49 into main Jan 31, 2025
5 checks passed
@RobinMalfait RobinMalfait deleted the fix/do-not-emit-keyframes-in-reference-theme branch January 31, 2025 14:13
RobinMalfait added a commit that referenced this pull request Jan 31, 2025
This PR is an optimization where it will not emit empty rules and
at-rules. I noticed this while working on
#16120 where we emitted:
```css
:root, :host {
}
```

There are some exceptions for "empty" at-rules, such as:

```css
@charset "UTF-8";
@layer foo, bar, baz;
@Custom-Media --modern (color), (hover);
@namespace "http://www.w3.org/1999/xhtml";
```

These don't have a body, but they still have a purpose and therefore
they will be emitted.

However, if you look at this:

```css
/* Empty rule */
.foo {
}

/* Empty rule, with nesting */
.foo {
  .bar {
  }
  .baz {
  }
}

/* Empty rule, with special case '&' rules */
.foo {
  & {
    &:hover {
    }
    &:focus {
    }
  }
}

/* Empty at-rule */
@media (min-width: 768px) {
}

/* Empty at-rule with nesting*/
@media (min-width: 768px) {
  .foo {
  }

  @media (min-width: 1024px) {
    .bar {
    }
  }
}
```

None of these will be emitted.

---------

Co-authored-by: Jordan Pittman <jordan@cryptica.me>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants