#Bun is unable to build an application with the `puppeteer-extra` npm package

1 messages · Page 1 of 1 (latest)

warm hedge
#

I have created a simple test application, with the following code:

// src/index.ts
import puppeteer from 'puppeteer-extra';

console.log(typeof puppeteer);

Trying to build this with the following command fails:
bun build --target=bun ./src/index.ts --outfile=dist/server.js

error: cannot write multiple output files without an output directory
warm hedge