
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
postcss-prettify
Advanced tools
postcss-prettify
About | Installation | Usage | License
A PostCSS plugin to prettify output. Requires at least Node.js v0.12. Should likely be included towards the end of a PostCSS plugin chain, if that's your jam.
Features
Example Input
.foo, .bar {
background: red;
}
@media only screen and (min-width:600px){.baz{background:blue;}}
Example Output
.foo,
.bar {
background: red;
}
@media only screen and (min-width: 600px) {
.baz {
background: blue;
}
}
From a terminal
npm install --save-dev postcss-prettify
As a PostCSS Plugin
postcss([
require('postcss-prettify')
])
Check the PostCSS docs for your chosen implementation.
Standalone
postcss-prettify
also exposes a standalone PostCSS processor instance as prettify.process(css)
:
var fs = require('mz/fs')
var prettify = require('postcss-prettify')
fs.readFile('src/style.css', 'utf8')
.then(data => prettify.process(data))
.then(res => fs.writeFile('dist/style.css', res.css))
.catch(err => console.err(err.stack))
FAQs
prettify postcss output
We found that postcss-prettify demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.