Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
postcss-normalize-casing
Advanced tools
[![Build Status](https://travis-ci.org/YozhikM/postcss-normalize-casing.svg?branch=master)](https://travis-ci.org/YozhikM/postcss-normalize-casing)
This plugin normalizes your CSS, which written not in a case-sensitive, in a valid CSS.
yarn add --dev postcss postcss-normalize-casing
const fs = require('fs');
const postcss = require('postcss');
const css = fs.readFileSync('css/input.css', 'utf8');
export default async function(css) {
const output = await postcss.process(css, {
from: 'css/input.css',
});
const outputCSS = output.css;
}
css/input.css
:
a {
color: RED;
transform: TRANSLATEY(10);
CURSOR: PoInTeR;
}
outputCSS
:
a {
color: red;
transform: translateY(10);
cursor: pointer;
}
$ yarn test
).FAQs
[![Build Status](https://travis-ci.org/YozhikM/postcss-normalize-casing.svg?branch=master)](https://travis-ci.org/YozhikM/postcss-normalize-casing)
The npm package postcss-normalize-casing receives a total of 0 weekly downloads. As such, postcss-normalize-casing popularity was classified as not popular.
We found that postcss-normalize-casing 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
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.