Skip to content

Commit

Permalink
Updated targets in buildIntegration script
Browse files Browse the repository at this point in the history
  • Loading branch information
kgpax committed Sep 25, 2023
1 parent 8ba6e1d commit 56b15c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/webui/src/scripts/buildIntegration.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ build({
...shared,
format: 'esm',
outfile: './dist/integration.esm.js',
target: ['esnext', 'node12.22.0'],
target: ['es2022', 'node16'],
});

build({
...shared,
format: 'cjs',
outfile: './dist/integration.cjs.js',
target: ['esnext', 'node12.22.0'],
target: ['es2022', 'node16'],
});

0 comments on commit 56b15c3

Please sign in to comment.