npm.io
3.0.0-rc.15 • Published 4 years ago

@yarnpkg/esbuild-plugin-pnp

Licence
BSD-2-Clause
Version
3.0.0-rc.15
Deps
1
Size
9 kB
Vulns
0
Weekly
0
Stars
8.1K

@yarnpkg/esbuild-plugin-pnp

This plugin lets you use Yarn with esbuild. We use it in order to build Yarn itself!

Usage

Add the plugin to your dependencies:

yarn add @yarnpkg/esbuild-plugin-pnp

Reference it via your esbuild configuration (build API only):

import {pnpPlugin} from '@yarnpkg/esbuild-plugin-pnp';

await build({
  plugins: [pnpPlugin()],
  // ...
});