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

@kviewui/vite-plugin-autocss

v1.1.2

Published

基于vite的HMR机制,根据页面class自动生成css文件的vite插件

Downloads

259

Readme

vite-plugin-autocss 基于vite的HMR机制,根据页面class自动生成css文件

如果想去除项目中没用到的css可以删除根目录引入的css源文件,然后重新编译项目即可生成新的css。

更新记录

如何使用

  • 安装依赖【推荐pnpm作为包管理器】

    pnpm add @kviewui/vite-plugin-autocss -D
      or
    npm i @kviewui/vite-plugin-autocss -D
      or
    yarn add @kviewui/vite-plugin-autocss -D
  • vite 配置

    import vitePluginAutocss from '@kviewui/vite-plugin-autocss'
    export default defineConfig({
      // ... other config settings 
      plugins:[
        vitePluginAutocss()
      ]
    })
    在项目入口文件中引入 生成的css
    import '@/style/auto.css'

生成代码提示文件

  • npx脚本生成【不支持读取css前缀】

    将会在项目根目录生成 autocss-use-snippets.css 作为代码提示文件

    npx autocss-gen-snippets
    or
    yarn autocss-gen-snippets
  • 配置文件配置自动生成【支持读取css前缀】

    // .autocss.config.js
    module.exports = {
      // 省略的配置内容
      ...,
      autoUseSnippets: true, // 是否自动生成css代码提示文件 【v1.1.1以上版本支持】
      // 省略的配置内容
      ...
    }

配置项

请复制项目根目录中 node_modules/@kviewui/vite-plugin-autocss/ 目录下的配置文件 autocss.config.js 到项目根目录,重命名为 .autocss.config.js 文件

自动生成配置文件【可省略手动复制配置文件的步骤】

将会在项目根目录生成 .autocss.config.js 配置文件

npx autocss-init-config
  or
yarn autocss-init-config

规则说明与进阶使用

感谢以下开源仓库提供