Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
gatsby-plugin-emotion
Advanced tools
Provide support for using the css-in-js library Emotion including server side rendering.
This plugin supports Emotion v11+
Older versions should use versions of this plugin which support Emotion 8 and 9. Check out the Emotion 10 migration guide for more information on how to upgrade.
npm install gatsby-plugin-emotion @emotion/react @emotion/styled
Add the plugin to your gatsby-config.js
.
module.exports = {
plugins: [
{
resolve: `gatsby-plugin-emotion`,
options: {
// Accepts the following options, all of which are defined by `@emotion/babel-plugin` plugin.
// The values for each key in this example are the defaults the plugin uses.
sourceMap: true,
autoLabel: "dev-only",
labelFormat: `[local]`,
cssPropOptimization: true,
},
},
],
}
The plugin supports the same options that you can pass into @emotion/babel-plugin
.
Option | Type | Description | Default | Required |
---|---|---|---|---|
sourceMap | boolean | Tells the plugin to inject source maps for use in browser dev tools in development. | true | |
autoLabel | 'dev-only' ∣ 'always' ∣ 'never' | Automatically adds the label property to styles so that class names generated by css or styled include the name of the variable the result is assigned to. You can read more about this option in @emotion/babel-plugin 's docs | dev-only | |
labelFormat | string | Only works when autoLabel is set to true. It allows you to define the format of the resulting label. The format is defined via string where variable parts are enclosed in square brackets [] . For example labelFormat: "my-classname--[local]" , where [local] will be replaced with the name of the variable the result is assigned to. | "[local]" | |
cssPropOptimization | boolean | Assumes that you are using something to make @emotion/react ’s jsx function work for all jsx. If you are not doing so and you do not want such optimizations to occur, disable this option. | true |
FAQs
Gatsby plugin to add support for Emotion
The npm package gatsby-plugin-emotion receives a total of 24,901 weekly downloads. As such, gatsby-plugin-emotion popularity was classified as popular.
We found that gatsby-plugin-emotion demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 13 open source maintainers collaborating on the project.
Did you know?
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.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.