1.0.2 • Published 3 years ago

ts-styled-components-plugin v1.0.2

Weekly downloads
6
License
Apache-2.0
Repository
github
Last release
3 years ago

ts-styled-components-plugin

build NPM semantic-release code style: prettier Commitizen friendly Conventional Changelog

A TypeScript transformer plugin that adds minification support to styled-components.

📦 Installation

# npm
npm install -D ts-styled-components-plugin
# yarn
yarn add -D ts-styled-components-plugin

🔨 Usage

  1. Install ttypescript. (As of now, TypeScript does not support using transformer plugins directly from the command line compiler tsc.)

  2. Add the following config to tsconfig.json.

{
  "compilerOptions": {
    "plugins": [{ "transform": "ts-styled-components-plugin" }]
  }
}
  1. Compile files with command ttsc, or use ttypescript via bundlers such as rollup.

⚙️ Options

// Default to `true`. If `false`, minification will not be applied to code.
minify?: boolean
// Default to `false`. If `true`, plugin will log helpful information to console when compiling, such as how many styled components have been minified.
verbose?: boolean
// Options below are only required if you used any name aliases (other than the original ones) to reference the `styled-components` APIs.
alias?: {
  styled?: string[]
  withConfig?: string[]
  attrs?: string[]
  createGlobalStyle?: string[]
  css?: string[]
  keyframes?: string[]
}
// Example ts.config
{
  "compilerOptions": {
    "plugins": [
      {
        "transform": "ts-styled-components-plugin",
        "minify": false,
        "verbose": true,
        "alias": {
          /**
           * @example
           * - fileA: import styled from 'styled-components'
           * - fileB: import styledImportAlias from 'styled-components'
           */
          "styled": ["styled", "styledImportAlias"]
        }
      }
    ]
  }
}

📖 Supported Syntax

import styled, { createGlobalStyle, css, keyframes } from 'styled-components'

styled.div``
styled('div')``
styled(Component)``
styled.div.withConfig({})``
styled('div').attrs({})``
styled(Component).withConfig({}).attrs({})``
createGlobalStyle``
css``
keyframes``
/**
 * For CSS string value, escaping quote is NOT supported.
 * @example
 * - content: 'escape \' quote is not supported'
 * - content: "escape \" quote is not supported"
 */
styled.div`
  /* supported string syntax */
  content: 'string with single quotes';
  content: 'string with double quotes';
  content: "I'm div";
  content: 'A "good" div';
`

📚 APIs

Following APIs are useful if you wish to build your own transformer plugin.

import { isStyledComponent, minify } from 'ts-styled-components-plugin'

// If the given node is a styled component, minify it.
if (isStyledComponent(node)) node = minify(node)

📜 License

Apache License 2.0