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

@clair/babel-plugin-inject-style

Package Overview
Dependencies
Maintainers
2
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@clair/babel-plugin-inject-style

When import a given component, import its corresponding style file automatically.

  • 1.0.2
  • latest
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source

@clair/babel-plugin-inject-style

When import a given component, import its corresponding style file automatically.

Installation

npm i -D @clair/babel-plugin-inject-style
# or
yarn add -D @clair/babel-plugin-inject-style

Usage

In your babel-config.js or .babelrc

module.exports = {
  plugins: ['@clair/inject-style'] // or '@clair/babel-plugin-inject-style'
}

Options

By default, it is designed to be used with @clair/vue and @clair/react.

But certain flexibility can be achieved by options

packageName

Default: '@clair/vue.

To specify which UI library to target.

module.exports = {
  plugins: [
    [
      '@clair/inject-style',
      {
        packageName: 'yourUILibrary'
      }
    ]
  ]
}

stylePackageName

Default: '@clair/theme-default'

If the style files are released under another package, this would become handy.

Support you want to import Button with pure JavaScript and load its style automatically, then you can

module.exports = {
  plugins: [
    '@clair/inject-style',
    {
      packageName: 'yourUILibrary',
      stylePackageName: 'yourDesignatedStyleLibrary'
    }
  ]
}

There is a path matching pattern underneath

const stylePath = `${stylePackageName}/styles/${computedComponentName}${extension}`

This may not be what you want. Then try getStylePath.

getStylePath

You can only pass function in babel.config.js.

To maximize the flexibility to compute your own style path, you can

module.exports = {
  plugins: [
    '@clair/inject-style',
    {
      packageName: 'yourUILibrary',
      getStylePath(componentName) {
        return computeStylePath(componentName)
      }
    }
  ]
}

getStylePath accept one parameter componentName.

It is name of the imported named import or the default import.

For example, in case like import { a as b } from 'libaray', a is the componentName here.

By using this, stylePackageName and extension will be ignored.

extension

Default: '.scss'.

The extension of style files. You can change it to anything you want.

It will be ignored if you are using getStylePath.

TODO

  • test

FAQs

Package last updated on 26 Dec 2019

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