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-source-build

v1.0.1

Published

提供对 monorepo 源代码引用的支持。

Downloads

14,105

Readme

@rsbuild/plugin-source-build

提供对 monorepo 源代码引用的支持。

@rsbuild/plugin-source-build 用于 monorepo 开发场景,它支持从当前项目引用其他子目录的源代码,并完成构建和热更新。

使用

安装:

npm add @rsbuild/plugin-source-build -D

rsbuild.config.ts 里注册插件:

// rsbuild.config.ts
import { pluginSourceBuild } from "@rsbuild/plugin-source-build";

export default {
  plugins: [pluginSourceBuild()],
};

使用场景

在 monorepo 中,子项目互相引用主要有两种方式 —— 产物引用和源码引用。我们以一个最简单的 monorepo 为例子,来介绍源码引用的使用场景。

比如 monorepo 中包含了一个 app 应用和一个 lib 包:

monorepo
├── app
└── lib
    └── src
        └── index.ts

其中,app 是基于 Rsbuild 构建的,app 依赖了 lib 中的一些方法:

{
  "name": "app",
  "dependencies": {
    "lib": "workspace:*"
  }
}

产物引用

产物引用指的是当前项目引用其他子项目构建后的产物。

比如上述例子中的 lib 是使用 TypeScript 编写的,通常情况下,我们需要提前构建 lib 的代码,生成 JavaScript 产物,这样 app 才可以正确引用它。当 lib 代码更新时,还需要重新执行一次构建(或者使用 tsc --watch),否则 app 无法引用到最新的代码。

这种方式的优势在于:

  • 各个子项目的构建过程是完全独立的,可以拥有不同的构建配置。
  • 可以针对子项目进行构建缓存。

劣势在于:

  • 本地开发时 HMR 的链路变长。
  • 当一个项目中包含多个 lib 包时,以上过程会显得十分繁琐。

源码引用

源码引用指的是当前项目引用其他子项目的源码进行构建。

比如上述例子,当你注册了 @rsbuild/plugin-source-build,并在 lib 中添加相关配置后,Rsbuild 会自动引用 lib 的 src/index.ts 源代码。这意味着,你不需要提前构建 lib 的代码,并且当 lib 的源代码更新时,也可以自动触发 app 的热更新。

这种方式的优势在于:

  • 子项目不依赖构建工具,也不需要添加构建配置,子项目的代码会被当前项目的构建工具编译。
  • 不需要提前执行子项目的构建流程。
  • 本地开发时 HMR 更高效。

劣势在于:

  • 当前项目需要支持子项目用到的语法特性,并且遵循相同的语法规范,比如使用一致的装饰器语法版本。如果当前项目和子项目需要使用不同的编译配置,则不适合使用 @rsbuild/plugin-source-build
  • 当前项目需要编译更多的代码,因此构建时间可能会变长。

配置子项目

当注册 @rsbuild/plugin-source-build后,Rsbuild 在构建过程中,会优先读取子项目的 source 字段对应的文件。因此,你需要在子项目的 package.json 中配置 source 字段,并且指向源码文件路径。

比如以下例子,当 lib 包被引用时,会读取 ./src/index.ts 文件进行构建:

{
  "name": "lib",
  "main": "./dist/index.js",
  "source": "./src/index.ts"
}

如果子项目使用了 exports 配置,那么你同样需要在 exports 中增加 source 字段。

{
  "name": "lib",
  "exports": {
    ".": {
      "source": "./src/index.ts",
      "default": "./dist/index.js"
    },
    "./features": {
      "source": "./src/features/index.ts",
      "default": "./dist/features/index.js"
    }
  }
}

配置 Project Reference

在 TypeScript 项目中,你需要使用 TypeScript 提供的 Project Reference 能力,它可以帮助你更好地使用源码开发。

介绍

Project reference 提供了以下能力:

  • 使 TypeScript 可以正确识别其他子项目的类型,而无须对子项目进行构建。
  • 当你在 VS Code 内进行代码跳转时,VS Code 可以自动跳转到对应模块的源代码文件。
  • Rsbuild 会读取 project reference 配置,并自动识别子项目的 tsconfig.compilerOptions.path 配置,从而让子项目的别名可以正确生效。

示例

在上文的例子中,由于 app 引用了 lib 子项目,我们需要在 app 的 tsconfig.json 内配置 compositereferences,并指向 lib 对应的相对目录:

{
  "compilerOptions": {
    "composite": true
  },
  "references": [
    {
      "path": "../lib"
    }
  ]
}

添加以上两个选项后,project reference 就已经配置完成了,你可以重新启动 VS Code 来查看配置以后的效果。

注意以上只是一个最简单的例子,在实际的 monorepo 项目中,可能会有更复杂的依赖关系,你需要添加完整的 references 配置,才能使上述功能正确运作。

如果你想了解更多关于 project reference 的内容,请阅读 TypeScript - Project References 官方文档。

选项

sourceField

  • 类型: string
  • 默认值: 'source'

用于配置源代码文件对应的解析字段。

比如配置为 my-source

pluginSourceBuild({
  sourceField: "my-source",
});

package.json 中,即可通过 my-source 指定源代码文件的路径:

{
  "name": "lib",
  "main": "./dist/index.js",
  "my-source": "./src/index.ts",
  "exports": {
    ".": {
      "my-source": "./src/index.ts",
      "default": "./dist/index.js"
    }
  }
}

resolvePriority

  • 类型: 'source' | 'output'
  • 默认值: 'source'

用于控制优先读取源代码还是产物代码。

默认情况下,@rsbuild/plugin-source-build会优先读取源代码,比如在下面的例子中,它会读取 source 字段。

{
  "name": "lib",
  "main": "./dist/index.js",
  "source": "./src/index.ts"
}

resolvePriority 设置为 'output' 时,@rsbuild/plugin-source-build会优先读取产物代码,即 mainmodule 字段指向的代码。

pluginSourceBuild({
  resolvePriority: "output",
});
  • package.json 中的 exports 字段不受 resolvePriority 的影响。
  • exports 中 key 的声明顺序决定了读取顺序,较早声明的 key 具有更高的优先级。

注意事项

在使用 @rsbuild/plugin-source-build的时候,需要注意几点:

  1. 需要保证当前项目可以编译子项目里使用的语法或特性。比如子项目使用了 Stylus 来编写 CSS 样式,那就需要当前 app 支持 Stylus 编译。
  2. 需要保证当前项目与子项目使用的代码语法特性相同,例如装饰器的语法版本一致。
  3. 源码构建可能存在一些限制。如果在使用中遇到问题,你可以将子项目 package.json 中的 source 字段移除,使用子项目的构建产物进行调试。
  4. 开启 composite: true 后,TypeScript 会生成 *.tsbuildinfo 临时文件,你需要将这些临时文件加入 .gitignore 中。
*.tsbuildinfo

License

MIT.