Mohammad Asif cf937194cb Removed un-waned things 1. vor 6 Monaten
..
lib cf937194cb Removed un-waned things 1. vor 6 Monaten
node_modules cf937194cb Removed un-waned things 1. vor 6 Monaten
README.md cf937194cb Removed un-waned things 1. vor 6 Monaten
package.json cf937194cb Removed un-waned things 1. vor 6 Monaten

README.md

@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()],
  // ...
});