Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

babel-plugin-transform-goober

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-plugin-transform-goober

A Babel plugin for goober, rewriting styled.div syntax to styled('div') calls

  • 1.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
928
increased by7.66%
Maintainers
1
Weekly downloads
 
Created
Source

babel-plugin-transform-goober

A Babel plugin for 🥜goober, rewriting styled.div syntax to styled('div') calls.

Install

npm install --save babel-plugin-transform-goober

How to use

Edit .babelrc.json

{
  "presets": [...],
  "plugins": ["babel-plugin-transform-goober"]
}

And now you can create your components using styled.* syntax:

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 tell the plugin about it. Set the configuration option "name" to the identifier name that want to use. For example, a .babelrc.json file like this:

{
  "presets": [...],
  "plugins": [["babel-plugin-transform-goober", { "name" : "goober" }]]
}

allows you to use goober like this:

import React from 'react';
import { styled as goober } from 'goober';

const Button = goober.button`...`;

Better Debugging Experience

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.

{
  "presets": [...],
  "plugins": [["babel-plugin-transform-goober", { "displayName" : true }]]
}

Example output:

// with displayName: false
<button className="go1231232"></button>
// with displayName: true
<button className="Sidebar__Button-go-1 go1231232"></button>

Dead Code Elimination

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.

{
  "presets": [...],
  "plugins": [["babel-plugin-transform-goober", { "pure" : false }]]
}

Keywords

FAQs

Package last updated on 24 Jul 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc