wd-David / esbuild-plugin-pino

An esbuild plugin to generate extra pino files for bundling
https://www.npmjs.com/package/esbuild-plugin-pino
MIT License
36 stars 9 forks source link

Probably missing dependencies causing fails in yarn pnp context #73

Open kubijo opened 1 year ago

kubijo commented 1 year ago

I had to add the following for this module to work in a Yarn PnP context:

packageExtensions:
  "esbuild-plugin-pino@*":
    dependencies:
      "pino": "*"
      "pino-pretty": "*"
      "thread-stream": "*"
viceice commented 1 year ago

I only need this to fix:

packageExtensions:
  esbuild-plugin-pino@*:
    dependencies:
      'thread-stream': '*'