@rushstack/webpack-workspace-resolve-plugin
TypeScript icon, indicating that this package has built-in type declarations

0.3.12 • Public • Published

@rushstack/webpack-workspace-resolve-plugin

This package contains a plugin for webpack 5 that leverages a cache file generated from package manager metadata to greatly accelerate module resolution. Local benchmarks have shown a savings of around 10% of build time for some fairly large closed source projects.

Installation

npm install @rushstack/webpack-workspace-resolve-plugin --save-dev

Overview

This plugin is intended primarily for use in pnpm monorepos, but any tool that produces a strict package layout can be made compatible by generating the necessary cache file.

The cache file contains information about the locations of every package.json file known to the package manager (including those in subdirectories of packages), as well as the list of declared dependencies of each and where they can be found.

When using this plugin, the following options should be configured for your resolver:

  • symlinks: false - Since the cache knows the symlinks for package dependencies, you can avoid the cost of testing for other symlinks unless you are using additional symlinks.
  • modules: [] - The cache should contain all information necessary to locate available dependencies for any arbitrary folder. If you need to allow resolution in other roots, you can add those, but omit 'node_modules'.

Impact

This plugin should eliminate file system calls associated with the following operations of NodeJS module resolution in webpack:

  • Find the nearest package.json to the calling module
  • Locate a named package from a calling module
  • Identify a package.json in a resolved directory
  • Find the nearest package.json to a resolved file path

Limitations

This plugin depends on the presence of a cache file in the workspace to function. Data in this cache file is assumed not to change while the webpack process is running.

Note: Generating the cache file is not in the scope of this plugin.

This plugin does not currently support having subdirectory package.json files within workspace projects (e.g. for declaring { "type": "module" } in mixed CommonJS/ESM packages). This plugin does not work (well) with a hoisted node_modules installation layout.

Links

@rushstack/webpack5-workspace-resolve-plugin is part of the Rush Stack family of projects.

Readme

Keywords

none

Package Sidebar

Install

npm i @rushstack/webpack-workspace-resolve-plugin

Weekly Downloads

10

Version

0.3.12

License

MIT

Unpacked Size

71.9 kB

Total Files

27

Last publish

Collaborators

  • octogonz
  • odspnpm
  • rushstack-admin