Skip to content

Latest commit

 

History

History
56 lines (37 loc) · 703 Bytes

File metadata and controls

56 lines (37 loc) · 703 Bytes

babel-plugin-transform-css-import-to-string

Turn CSS imports into strings.

Example

Given the following style.css.

body { background-color: red; }

in

import css from './style.css';

out

var css = 'body{background-color:red;}';

Installation

$ npm install babel-plugin-transform-css-import-to-string

Usage

Via .babelrc (Recommended)

.babelrc

{
  "plugins": ["transform-css-import-to-string"]
}

Via CLI

$ babel --plugins transform-css-import-to-string script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["transform-css-import-to-string"]
});