
Security News
The Next Open Source Security Race: Triage at Machine Speed
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.
@softmotions/postcss-typescript-css
Advanced tools
A PostCSS plugin to create a TypeScript file by each CSS file.
npm install postcss-typescript-css
What is this? For example, you have the following CSS file:
componentName.css
.ComponentName {
color: green;
}
.ComponentName-descendentName {
color: yellow;
}
.ComponentName--modifierName {
color: red;
}
And the plugin will give you a TypeScript file in the same location where the CSS file is. This file generated has almost the same name, only it's added "Style" at the end of the original name of your CSS file, example:
componentNameStyle.ts
export const componentNameStyle = {
componentName: 'ComponentName',
componentDescendentName: 'ComponentName-descendentName',
componentModifierName: 'ComponentName--modifierName',
};
So, you can import the TypeScript file
Note: you have to import first the componentName.css
import './componentName.css';
import { componentNameStyle } from './componentNameStyle';
const element = document.createElement('div');
element.className = componentNameStyle.componentName;
postcss([
require('postcss-typescript-css')
]);
if you are using postcss-modules you need to do this:
postcss([
require('postcss-modules')({
getJSON: (cssFileName, json) => {
require('postcss-typescript-css')({
cssFileName: cssFileName,
content: json,
})();
}
})
]);
Type: string
Type: object (JSON object)
This will build scripts, run tests and generate a code coverage report. Anything less than 100% coverage will throw an error.
npm test
Take a look a this repo. Here you could see the plugin in action with webpack 2 and React with TypeScript and PostCSS.
See PostCSS docs for examples for your environment.
Inspired by postcss-generate-ts-hash, postcss-modules and postcss-font-pack to create the structure of the project
npm test).FAQs
PostCSS plugin to create a typescript file by each CSS file
The npm package @softmotions/postcss-typescript-css receives a total of 2 weekly downloads. As such, @softmotions/postcss-typescript-css popularity was classified as not popular.
We found that @softmotions/postcss-typescript-css 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
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.

Security News
gem.coop is testing registry-level dependency cooldowns to limit exposure during the brief window when malicious gems are most likely to spread.