Security News
cURL Project and Go Security Teams Reject CVSS as Broken
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
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 19 weekly downloads. As such, css-modules-flow-types-cli popularity was classified as not 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
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.