gatsby-1-config-css-modules

1.0.11 • Public • Published

gatsby-1-config-css-modules

CSS Modules configuration for Gatsby v1 plugins

Install

npm install --save-dev gatsby-plugin-sass

How to use

Example from gatsby-plugin-sass:

// in gatsby-node.js
const { cssModulesConfig } = require("gatsby-1-config-css-modules");
 
exports.modifyWebpackConfig = ({ config, stage }, { precision }) => {
  const sassFiles = /\.s[ac]ss$/;
  const sassModulesFiles = /\.module\.s[ac]ss$/;
  const sassLoader = precision ? `sass?precision=${precision}` : `sass`;
 
  switch (stage) {
    case `develop`: {
      config.loader(`sass`, {
        test: sassFiles,
        exclude: sassModulesFiles,
        loaders: [`style`, `css`, sassLoader],
      });
 
      config.loader(`sassModules`, {
        test: sassModulesFiles,
        loaders: [`style`, cssModulesConfig(stage), sassLoader],
      });
      return config;
    }
 
    // etc.
  }
};

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
1.0.111,007latest
1.1.0-alpha.e9c3027b0canary
1.0.10-130next

Version History

VersionDownloads (Last 7 Days)Published
1.0.10-130
1.0.10-120
1.0.10-110
1.0.10-100
1.0.10-90
1.0.10-80
1.0.10-70
1.0.10-60
1.0.10-50
1.0.10-40
1.1.0-alpha.e9c3027b0
1.1.0-alpha.5421f3830
1.1.0-alpha.523a42860
1.1.0-alpha.5c9569c00
1.1.0-alpha.76793cd80
1.1.0-alpha.4a09f7450
1.1.0-alpha.20252dc30
1.1.0-alpha.95fcd4af0
1.0.111,007
1.0.10-30
1.1.0-alpha.5f47082e0
1.1.0-alpha.6ad61a130
1.1.0-alpha.84bd71b40
1.1.0-alpha.12622d640
1.1.0-alpha.34eda94b0
1.1.0-alpha.9fe50b000
1.0.10-20
1.1.0-alpha.f98688ee0
1.0.10-10
1.1.0-alpha.2cbec6d60
1.0.101
1.1.0-alpha.e66c6c9c0
1.0.10-00
1.1.0-alpha.d0b8dd9e0
1.1.0-alpha.067e672c0
1.1.0-alpha.e28a1c8e0
1.1.0-alpha.bb258cb50
1.1.0-alpha.b68b7f5c0
1.1.0-alpha.dd5041530
1.1.0-alpha.9e381f740
1.1.0-alpha.1a8f691e0
1.1.0-alpha.9d4de2a60
1.1.0-alpha.6ab848750
1.0.94
1.1.0-alpha.5182142b0
1.1.0-alpha.32ef58da0
1.1.0-alpha.2b6952170
1.1.0-alpha.53bbd4cd0
1.1.0-alpha.d1544e1b0
1.1.0-alpha.3f307d610
1.1.0-alpha.926cb6da0
1.1.0-alpha.f5c1df610
1.1.0-alpha.7b47e00d0
1.1.0-alpha.aeb055610
1.1.0-alpha.9da1bca10
1.1.0-alpha.e55869160
1.1.0-alpha.8c8224510
1.1.0-alpha.e9df8e570
1.1.0-alpha.03b9df850
1.1.0-alpha.b50f20630
1.1.0-alpha.a0a09c940
1.1.0-alpha.f20ac0ed0
1.0.82
1.0.73
1.0.60
1.1.0-alpha.1460dad90
1.1.0-alpha.5db7a2750
1.1.0-alpha.93f2e2a20
1.1.0-alpha.2e1e77820
1.1.0-alpha.76b327010
1.0.51,729
1.0.40
1.0.30
1.0.20
1.0.10

Package Sidebar

Install

npm i gatsby-1-config-css-modules

Weekly Downloads

2,746

Version

1.0.11

License

MIT

Unpacked Size

2.16 kB

Total Files

4

Last publish

Collaborators

  • kylemathews
  • m-allanson
  • monastic.panic
  • pieh