npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vite-react-stylename

v1.0.3

Published

A plugin for vite to support react styleName and css-modules

Downloads

13

Readme

vite-react-stylename

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

This project was modified based on the vite-plugin-react-css-module. Due to the lack of adaptation to alias in the source project and a long absence of updates, a new project was opened using vite's lib mode.

getting start

Installation

pnpm install vite-react-stylename

other devDependencies

pnpm install less postcss-less generic-names @types/react-css-modules -D

usage

vite

import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import viteReactStyleName from "vite-react-stylename";
import genericNames from "generic-names";
import { resolve } from "path";

const generateScopedName = genericNames("[name]__[local]__[hash:base64:4]");


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

In React, you can use xxx.module.less + stylename to enable the CSS module.

import ReactDOM from "react-dom/client";
import "./index.module.less";
import "@/assets/index.less";

function App() {
  return <div styleName="app-container">Hello vite-react-stylename!</div>;
}

ReactDOM.createRoot(document.getElementById("app")!).render(<App />);

options

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

| Name | Type | Description | Default | | ---------------------------- | -------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------- | | context | string | Must match webpack context configuration. css-loader inherits context values from webpack. Other CSS module implementations might use different context resolution logic. | process.cwd() | | exclude | string | A RegExp that will exclude otherwise included files e.g., to exclude all styles from node_modules exclude: 'node_modules' | | | filetypes | ?FiletypesConfigurationType | Configure postcss syntax loaders like sugarss, LESS and SCSS and extra plugins for them. | | | generateScopedName | ?GenerateScopedNameConfigurationType | Refer 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] | | removeImport | boolean | Remove 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 | ?AttributeNameMapType | Refer to Custom Attribute Mapping | {"styleName": "className"} | | skip | boolean | Whether to apply plugin if no matching attributeNames found in the file | false | | autoResolveMultipleImports | boolean | Allow multiple anonymous imports if styleName is only in one of them. | false |

Todo

  • [x] use alias
  • [ ] Adapt to versions of vite 5.0.12 and above

Special Thanks

https://github.com/fchengjin/vite-plugin-react-css-module