0.1.2 • Published 5 years ago

gatsby-plugin-css-modules-flow-types v0.1.2

Weekly downloads
5
License
MIT
Repository
github
Last release
5 years ago

gatsby-plugin-css-modules-flow-types

Gatsby plugin for generating Flow types for CSS Modules using css-modules-flow-types.

Usage

Install the plugin:

yarn add gatsby-plugin-css-modules-flow-types

Add it to your gatsby-config.js file:

plugins: [
  'gatsby-plugin-css-modules-flow-types',
]

And that's it!

Now when you import a .module.css file, css-modules-flow-types will automatically create a corresponding .module.css.flow file containing its Flow types. Flow will use it to warn you if you're using class names that aren't defined in the .module.css file.