Skip to content

Instantly share code, notes, and snippets.

@egoist
Last active February 22, 2019 07:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save egoist/45c5b32388f668b6b717ae55bc4b6368 to your computer and use it in GitHub Desktop.
Save egoist/45c5b32388f668b6b717ae55bc4b6368 to your computer and use it in GitHub Desktop.
postcss load plugin
npm i -g postcss-cli
postcss in.css -o out.css
body {
h1 {
color: red;
}
}
{
"name": "xxx",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"postcss": {
"plugins": {
"postcss-nested": {}
}
},
"devDependencies": {
"postcss-nested": "^1.0.1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment