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