如何用 Rollup 打包 React UI 组件

系列

  1. 如何用 Rollup 打包 Javascript / Typescript (已完成)
  2. 如何用 Rollup 打包 Vue2.x UI 组件 (已完成)
  3. 如何用 Rollup 打包 Vue3.x UI 组件 (上一章)
  4. 如何用 Rollup 打包 React UI 组件 (本章节)

前言

与之前章节一样以 IconSelect 组件作为实战范例,分享 Rollup 打包 React Component 所需的依赖、配置及脚本。

简介

本章节使用 React18.x@ant-design/icons^5.2.5antd^5.8.5 - Select 组件封装成 IconSelect 新组件作为实战范例进行讲解。另本章节尾附有相关链接~

Rollup 打包 React 所需依赖 (详见 package.json)

  • @rollup/plugin-alias

    • 用途: rollup 路径别名配置
  • @rollup/plugin-node-resolve

    • 用途: 用于解析 node_modules 中第三方模块
  • @rollup/plugin-commonjs

    • 用途: 用于将CommonJS模块转换为ES6,以便 Rollup 解析处理
  • @rollup/plugin-babel

    • 用途: rollup babel plugin

    • 配置: babel.config.js

      javascript 复制代码
        module.exports = {
          presets: [
            ['@babel/preset-env', { modules: false }],
            ['@babel/preset-react']
          ],
          plugins: ['@babel/plugin-transform-runtime'],
          ignore: ['node_modules/**']
        }
    • 依赖:

      • @babel/core babel 核心
      • @babel/runtime 底层依赖,提供各种helper
      • @babel/preset-env ES6 语法转换
      • @babel/preset-react react 语法转换
      • @babel/plugin-transform-runtime 自动移除语法转换后内联的辅助函数
  • rollup-plugin-postcss

    • 用途: 用于处理 css 样式, 包括 Vue 单文件中 <style> 样式
  • rollup-plugin-typescript

    • 用途1: 用于处理 .tx 及 .tsx 文件中 ts 语法的解析
    • 用途2: 用于解析 rollup.config.ts 配置文件 (eg. pnpm build)

Rollup 打包 React 组件 插件选项

  • 创建 rollup.config.ts 配置文件

    javascript 复制代码
      import { defineConfig } from 'rollup'
      import { nodeResolve } from '@rollup/plugin-node-resolve'
      import typescript from '@rollup/plugin-typescript'
      import commonjs from '@rollup/plugin-commonjs'
      import postcss from 'rollup-plugin-postcss'
      import alias from '@rollup/plugin-alias'
      import babel from '@rollup/plugin-babel'
    
      /**
       * Rollup Configuration
       */
      export default defineConfig([
        {
          input: 'src/index.tsx',
          output: [
            {
              dir: 'dist',
              format: 'es',
              entryFileNames: () => `[name].mjs`
            },
            {
              dir: 'dist',
              format: 'cjs',
              exports: 'named',
              entryFileNames: () => `[name].cjs`
            }
          ],
          plugins: [
            alias({
              entries: [{
                find: '@',
                replacement: new URL('./src', import.meta.url).pathname
              }]
            }),
            nodeResolve(),
            commonjs(),
            typescript(),
            postcss(),
            babel({
              babelHelpers: 'runtime', // 因为设置了 runtime, 所以 babel.config.js 配置了 @babel/plugin-transform-runtime
              extensions: ['ts', '.tsx']
            })
          ],
          external: [
            /^react(\/.+|$)/,
            /^@ant-design\/icons/,
            /^antd(\/.+|$)/
          ]
        }
      ])

Rollup 打包 React 组件 Typescript 配置

  • 创建 tsconfig.json 配置文件,需生成声明文件,则需要增加 declaration: true
json 复制代码
  {
    "compilerOptions": {
      "baseUrl": "./",
      "outDir": "dist",
      "target": "ESNext",
      "module": "ESNext",
      "jsx": "preserve", // 由于 @babel/preset-react 已经处理了 react 语法, 所以设置 preserve
      "moduleResolution": "Node",
      "useDefineForClassFields": true,
      "allowSyntheticDefaultImports": true,
      "strict": true,
      "sourceMap": false,
      "resolveJsonModule": true,
      "isolatedModules": true,
      "esModuleInterop": true,
      "skipLibCheck": true,
      "declaration": true,
      "lib": [
        "ESNext",
        "DOM"
      ],
      "paths": {
        "@/*": [
          "src/*"
        ]
      }
    },
    "include": [
      "src/**/*.ts",
      "src/**/*.d.ts",
      "src/**/*.tsx"
    ]
  }

Rollup 打包 React 组件 Script 脚本配置

  • 在 package.json 文件中

    json 复制代码
      {
        "scripts": {
          "build": "shx rm -rf dist && rollup --config rollup.config.ts --configPlugin typescript"
        }
      }

如何下载使用 IconSelect 组件?

  • 发布

    json 复制代码
      {
        "name": "@rollup-build-components/icon-select-react18.x",
        "publishConfig": {
          "access": "public",
          "registry": "https://registry.npmjs.org/"
        }
      }
    shell 复制代码
      pnpm publish
  • 安装

    shell 复制代码
      yarn add @rollup-build-components/icon-select-react18.x
    
      pnpm add @rollup-build-components/icon-select-react18.x
  • 使用

    tsx 复制代码
      import SIconSelect from '@rollup-build-components/icon-select-react18.x'
      import { useState } from 'react'
    
      export default function Demo() {
        const [value, setValue] = useState('')
    
        return (
          <>
            <SIconSelect value={value} onChange={setValue} style={{ width: '280px' }}/>
          </>
        )
      }

项目 icon-select-react18.x

相关推荐
Coding的叶子2 小时前
Node.js 安装 + React Flow 快速入门:环境安装与项目搭建
react.js·node.js·react flow·fgai·react agent
刺客-Andy3 小时前
React 第四十一节Router 中 useActionData 使用方法案例以及注意事项
前端·react.js·前端框架
肠胃炎3 小时前
React事件机制
前端·javascript·react.js
帅帅哥的兜兜4 小时前
next.js实现项目搭建
前端·react.js·next.js
海上彼尚7 小时前
秒删node_modules[无废话版]
vue.js·react.js
程序猿阿伟7 小时前
《数字分身进化论:React Native与Flutter如何打造沉浸式虚拟形象编辑》
flutter·react native·react.js
果冻kk9 小时前
【实战教程】从零实现DeepSeek AI多专家协作系统 - Spring Boot+React打造AI专家团队协作平台
人工智能·spring boot·react.js
进取星辰9 小时前
28、动画魔法圣典:Framer Motion 时空奥义全解——React 19 交互动效
前端·react.js·交互
Zero10171320 小时前
【详解pnpm、npm、yarn区别】
前端·react.js·前端框架
赵大仁1 天前
React Native 与 Expo
javascript·react native·react.js