babel-plugin-transform-csstag
v0.0.11
Published
Compile css template strings to functions tree
Downloads
7
Maintainers
Readme
babel-plugin-transform-csstag
[WIP] Compile css template strings to function tree
Installation
$ npm install babel-plugin-transform-csstag
Usage
Via .babelrc
(Recommended)
.babelrc
{
"plugins": ["babel-plugin-transform-csstag"]
}
Via CLI
$ babel --plugins babel-plugin-transform-csstag script.js
Via Node API
require("babel-core").transform("code", {
plugins: ["babel-plugin-transform-csstag"]
});