We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6c7d8c commit 3681095Copy full SHA for 3681095
node/build.wrapper.js
@@ -9,7 +9,11 @@ esbuild.build(
9
bundle: true,
10
platform: "node",
11
outfile: "./Browser/wrapper/index.js",
12
- plugins: [nodeExternalsPlugin()],
+ plugins: [nodeExternalsPlugin({
13
+ // Allow UUID to be bundled instead of external
14
+ // Needed when building with pkg
15
+ allowList: ['uuid']
16
+ })],
17
external: [
18
'playwright-core/*',
19
],
0 commit comments