
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
css-modules-flow-types-cli
Advanced tools
CLI for creating Flow type definitions based on CSS Modules files.
This gives you:
Given the following css file using CSS Modules:
@value primary: red;
.myClass {
color: primary;
}
css-modules-flow-types
creates the following .flow file next to it:
/* This file is automatically generated by css-modules-flow-typed. */
// @flow
declare module.exports: {|
+'myClass': string;
+'primary': string;
|};
$ npm install --dev css-modules-flow-types-cli
$ yarn install -D css-modules-flow-types-cli
This installs the runner as css-modules-flow-types
.
And run css-modules-flow-types <input directory or glob>
command.
For example, if you have .css files under src
directory, exec the following:
Running,
css-modules-flow-types src
Creates *.css.flow
files next to all css files.
(your project root)
- src/
| myStyle.css
| myStyle.css.flow [created]
This software is released under the MIT License.
0.2.1 (2017-06-18)
<a name="0.2.0"></a>
FAQs
CLI for creating flow definitions from CSS Modules files
The npm package css-modules-flow-types-cli receives a total of 4,905 weekly downloads. As such, css-modules-flow-types-cli popularity was classified as popular.
We found that css-modules-flow-types-cli 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
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.