A Babel plugin for goober, rewriting styled.div syntax to styled('div') calls
npm install babel-plugin-transform-gooberA Babel plugin for
🥜goober, rewriting styled.div syntax to styled('div') calls.
npm install --save babel-plugin-transform-goober
Edit .babelrc.json
``json`
{
"presets": [...],
"plugins": ["babel-plugin-transform-goober"]
}
And now you can create your components using styled.* syntax:
`jsx
import React from 'react';
import { styled } from 'goober';
const Button = styled.button
margin: 0;
padding: 1rem;
font-size: 1rem;
background-color: tomato;;`
If you want to use some other identifier than styled you need to"name"
tell the plugin about it. Set the configuration option to the.babelrc.json
identifier name that want to use. For example, a file like this:
`json`
{
"presets": [...],
"plugins": [["babel-plugin-transform-goober", { "name" : "goober" }]]
}
allows you to use goober like this:
`jsx
import React from 'react';
import { styled as goober } from 'goober';
const Button = goober.button...;`
Setting the displayName option to true, will add richer component names and additional CSS classes to the component. This makes it easier to find your components in the devtools or in your HTML.
`json`
{
"presets": [...],
"plugins": [["babel-plugin-transform-goober", { "displayName" : true }]]
}
Example output:
`js`
// with displayName: false
// with displayName: true
Minifiers have a hard time proving that a styled() call has no side-effects and therefore won't remove them. By default this plugin will automatically insert #__PURE__ annotations to mark these functions as pure. You can opt out of this feature at the cost of bigger bundles by passing pure: false.
`json``
{
"presets": [...],
"plugins": [["babel-plugin-transform-goober", { "pure" : false }]]
}