mirror of
https://github.com/napi-rs/napi-rs.git
synced 2025-12-08 19:56:07 +00:00
13 lines
265 B
JavaScript
13 lines
265 B
JavaScript
import * as esbuild from 'esbuild'
|
|
|
|
await esbuild.build({
|
|
entryPoints: ['./dist/index.js'],
|
|
outfile: './dist/index.cjs',
|
|
bundle: true,
|
|
platform: 'node',
|
|
external: ['@napi-rs/lzma', '@napi-rs/tar'],
|
|
define: {
|
|
'import.meta.url': '__filename',
|
|
},
|
|
})
|