랭킹으로 돌아가기
styled-components/babel-plugin-styled-components
JavaScriptImprove the debugging experience and add server-side rendering support to styled-components
styled-componentsminificationbabelbabel-pluginssr
주요 지표
스타 성장
스타
1.1k
포크
139
주간 성장
—
이슈
37
5001k
2016년 10월2018년 5월2020년 1월2021년 8월2023년 4월2024년 12월2026년 7월
아티팩트npm
npm install babel-plugin-styled-componentsREADME
babel-plugin-styled-components
This plugin is a highly recommended supplement to the base styled-components library, offering some useful features:
- consistently hashed component classNames between environments (a must for server-side rendering)
- better debugging through automatic annotation of your styled components based on their context in the file system, etc.
- various types of minification for styles and the tagged template literals styled-components uses
Requirements
This plugin is tested against:
@babel/core^7styled-components>= 6(earlier majors may still work but aren't exercised in CI)
Quick start
Install the plugin first:
npm install --save-dev babel-plugin-styled-components
Then add it to your babel configuration:
{
"plugins": ["babel-plugin-styled-components"]
}
Options
Full option reference lives on the styled-components documentation site. A couple worth flagging here:
topLevelImportPaths(string[]): additional module specifiers whosestyledexport should be recognized alongsidestyled-components. Useful for libraries that re-export the styled-components API.cssPropImportPath(string, default'styled-components'): which package the css-prop transform should auto-importstyledfrom when the file doesn't already have a styled import. Set to'styled-components/native'for React Native targets.
Changelog
See Github Releases
Documentation
The documentation for this plugin lives on the styled-components website!
License
Licensed under the MIT License, Copyright © 2016-present Vladimir Danchenkov and Maximilian Stoiber.
See LICENSE.md for more information.
관련 저장소