New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

vite-plugin-react-css-modules

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vite-plugin-react-css-modules

A vitejs plugin to use babel-plugin-react-css-modules

latest
Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
466
-8.27%
Maintainers
1
Weekly downloads
 
Created
Source

vite-plugin-react-css-modules

A vitejs plugin to use babel-plugin-react-css-modules

getting start

Installation

npm install vite-plugin-react-css-modules

usage

// vite.config.js
import { defineConfig } from "vite";
import reactRefresh from "@vitejs/plugin-react-refresh";
import reactCssModule from "vite-plugin-react-css-modules";
const generateScopedName = "[name]__[local]___[hash:base64:5]";


export default defineConfig({
  plugins: [
    reactCssModule({
      generateScopedName,
      filetypes: {
        ".less": {
          syntax: "postcss-less",
        },
      },
    }),
    reactRefresh(),
  ],
  css: {
    modules: {
      generateScopedName,
    },
  },
});

options

you can use all the options exclude webpackHotModuleReloading of babel-plugin-react-css-modules.

NameTypeDescriptionDefault
contextstringMust match webpack context configuration. css-loader inherits context values from webpack. Other CSS module implementations might use different context resolution logic.process.cwd()
excludestringA RegExp that will exclude otherwise included files e.g., to exclude all styles from node_modules exclude: 'node_modules'
filetypes?FiletypesConfigurationTypeConfigure postcss syntax loaders like sugarss, LESS and SCSS and extra plugins for them.
generateScopedName?GenerateScopedNameConfigurationTypeRefer to Generating scoped names. If you use this option, make sure it matches the value of localIdentName in webpack config. See this issue[path]___[name]__[local]___[hash:base64:5]
removeImportbooleanRemove the matching style import. This option is used to enable server-side rendering.false
handleMissingStyleName"throw", "warn", "ignore"Determines what should be done for undefined CSS modules (using a styleName for which there is no CSS module defined). Setting this option to "ignore" is equivalent to setting errorWhenNotFound: false in react-css-modules."throw"
attributeNames?AttributeNameMapTypeRefer to Custom Attribute Mapping{"styleName": "className"}
skipbooleanWhether to apply plugin if no matching attributeNames found in the filefalse
autoResolveMultipleImportsbooleanAllow multiple anonymous imports if styleName is only in one of them.false

demo

git clone git@github.com:fchengjin/vite-plugin-react-css-module.git
cd vite-plugin-react-css-module/demo
yarn
yarn dev

Keywords

react-css-modules

FAQs

Package last updated on 02 Jun 2021

Did you know?

Socket

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.

Install

Related posts