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

rsbuild-plugin-legacy-deps-compat

v0.1.7

Published

rsbuild is supported in projects that use webpack@<=4 and postcss<=7

Downloads

50

Readme

rsbuild-plugin-legacy-deps-compat

English | 简体中文

假设有一个老项目,这个项目使用了[email protected][email protected],你想使用rsbuild来为开发和构建提效,但同时又想保留原有的构建方式。这时你可能会发现报错了,这个插件尝试解决这个问题,目前支持解决webpackpostcss相关的报错

快速开始

  1. 安装依赖
npm i rsbuild-plugin-legacy-deps-compat -D
  1. 配置 rsbuild
import { defineConfig } from '@rsbuild/core'
import legacyDepsCompat from 'rsbuild-plugin-legacy-deps-compat'

export default defineConfig({
  plugins: [
    // 项目中使用了任意版本的 webpack 和 [email protected]
    legacyDepsCompat(),

    // 项目中使用了任意的 webpack 和 postcss@<7 ,但是想在rsbuild中使用 postcss@8
    legacyDepsCompat({
      postcss: {
        // 将 postcss.config.js 放在 compat 目录下
        configDir: 'compat',
      },
    }),

    // 项目中使用了任意版本的 webpack 并且想使用自定义的 postcss-loader
    legacyDepsCompat({
      postcss: {
        customPostcssLoaderOptions: {
          // 这里填写 postcss-loader 的配置
        },
      },
    }),
  ]
})

配置

| 名称 | 类型 | 默认值 | 描述 | | --------------------------------- | -------------- | ---------- | -------------------------------------- | | webpack | boolean | true | 是否给webpack设置别名 | | postcss | false\|object| {} | postcss配置,设置为false不做任何修改 | | postcss.clearBuiltinPlugins | boolean | true | 是否清除内置postcss插件件 | | postcss.configDir | string | ./ | postcss配置文件所在目录 | | postcss.customPostcssLoaderOptions| any | undefined| postcss-loader配置,设置此项后将会使用自定义的postcss-loader,请确保已经安装了postcss-loader| | postcss.addEmptyLoader | boolean | false | 是否在postcss-loader之前新增一个empty-loader|

使用自定义postcss-loader遇到的组件库样式问题

module.exports = ":root{--van-swipe-indicator-size:0.12rem;}"

如果遇到组件库的样式变成上面这样,虽然不知道具体原因,但是经过测试在postcss-loader之前加入一个空的loader可以解决问题,这里已经内置到了配置之中

export default defineConfig({
  plugins: [
    legacyDepsCompat({
      customPostcssLoaderOptions: {},
      addEmptyLoader: true,
    }),
  ],
});