lhl 6ff0e96ad3 8-4-1 hace 1 año
..
CHANGELOG.md 6ff0e96ad3 8-4-1 hace 1 año
LICENSE 6ff0e96ad3 8-4-1 hace 1 año
README.md 6ff0e96ad3 8-4-1 hace 1 año
camel-case.js 6ff0e96ad3 8-4-1 hace 1 año
extract.js 6ff0e96ad3 8-4-1 hace 1 año
get-template.js 6ff0e96ad3 8-4-1 hace 1 año
index.js 6ff0e96ad3 8-4-1 hace 1 año
literal.js 6ff0e96ad3 8-4-1 hace 1 año
object-parse.js 6ff0e96ad3 8-4-1 hace 1 año
object-parser.js 6ff0e96ad3 8-4-1 hace 1 año
object-stringifier.js 6ff0e96ad3 8-4-1 hace 1 año
object-stringify.js 6ff0e96ad3 8-4-1 hace 1 año
object-syntax.js 6ff0e96ad3 8-4-1 hace 1 año
object.js 6ff0e96ad3 8-4-1 hace 1 año
package.json 6ff0e96ad3 8-4-1 hace 1 año
template-parse.js 6ff0e96ad3 8-4-1 hace 1 año
template-parser-helper.js 6ff0e96ad3 8-4-1 hace 1 año
template-parser.js 6ff0e96ad3 8-4-1 hace 1 año
template-safe-parse.js 6ff0e96ad3 8-4-1 hace 1 año
template-safe-parser.js 6ff0e96ad3 8-4-1 hace 1 año
template-stringifier.js 6ff0e96ad3 8-4-1 hace 1 año
template-stringify.js 6ff0e96ad3 8-4-1 hace 1 año
template-tokenize.js 6ff0e96ad3 8-4-1 hace 1 año
un-camel-case.js 6ff0e96ad3 8-4-1 hace 1 año

README.md

PostCSS CSS-in-JS Syntax

NPM version Build Status

<img align="right" width="95" height="95"

title="Philosopher’s stone, logo of PostCSS"
src="https://api.postcss.org/logo.svg">

PostCSS syntax for parsing CSS in JS literals:

Getting Started

First thing's first, install the module:

npm install postcss-syntax @stylelint/postcss-css-in-js --save-dev

Use Cases

const postcss = require("postcss");
const stylelint = require("stylelint");
const syntax = require("postcss-syntax");
postcss([stylelint({ fix: true })])
  .process(source, { syntax: syntax })
  .then(function (result) {
    // An alias for the result.css property. Use it with syntaxes that generate non-CSS output.
    result.content;
  });

input:

import glm from "glamorous";
const Component1 = glm.a({
  flexDirectionn: "row",
  display: "inline-block",
  color: "#fff"
});

output:

import glm from "glamorous";
const Component1 = glm.a({
  color: "#fff",
  display: "inline-block",
  flexDirectionn: "row"
});

Advanced Use Cases

Add support for more css-in-js package:

const syntax = require("postcss-syntax")({
  "i-css": (index, namespace) => namespace[index + 1] === "addStyles",
  "styled-components": true
});

See: postcss-syntax

Style Transformations

The main use case of this plugin is to apply PostCSS transformations to CSS code in template literals & styles as object literals.