Skip to content

@linaria/core@4.5.0

Compare
Choose a tag to compare
@github-actions github-actions released this 13 Jul 11:55
· 90 commits to master since this release
06b3dad

Minor Changes

  • 16c057d: Breaking Change: Performance Optimization for styled

    When a component is wrapped in styled, Linaria needs to determine if that component is already a styled component. To accomplish this, the wrapped component is included in the list of variables for evaluation, along with the interpolated values used in styles. The issue arises when a wrapped component, even if it is not styled, brings along a substantial dependency tree. This situation is particularly evident when using styled to style components from third-party UI libraries.

    To address this problem, Linaria will now examine the import location of the component and check if there is an annotation in the package.json file of the package containing the components. This annotation indicates whether the package includes other Linaria components. If there is no such annotation, Linaria will refrain from evaluating the component.

    Please note that this Breaking Change solely affects developers of component libraries. In order for users to style components from your library, you must include the linaria.components property in the library's package.json file. This property should have a mask that covers all imported files with components. Here's an example of how to specify it:

    "linaria": {
      "components": "**/*"
    }

Patch Changes

  • af5bb92: The end of support for Node.js 14. Migration to pnpm 8.
  • Updated dependencies [890b4ac]
  • Updated dependencies [05ad266]
  • Updated dependencies [16c057d]
  • Updated dependencies [af5bb92]
    • @linaria/utils@4.5.0
    • @linaria/tags@4.5.0
    • @linaria/logger@4.5.0