Initial commit

This commit is contained in:
Brian McGonagill 2026-03-18 09:02:21 -05:00
commit b3a51a4115
10336 changed files with 2381973 additions and 0 deletions

28
node_modules/@electric-sql/pglite-tools/tsup.config.ts generated vendored Normal file
View file

@ -0,0 +1,28 @@
import { cpSync } from 'fs'
import { resolve } from 'path'
import { defineConfig } from 'tsup'
const entryPoints = [
'src/index.ts',
'src/pg_dump.ts',
]
const minify = process.env.DEBUG === 'true' ? false : true
export default defineConfig([
{
entry: entryPoints,
sourcemap: true,
dts: {
entry: entryPoints,
resolve: true,
},
clean: true,
minify: minify,
shims: true,
format: ['esm', 'cjs'],
onSuccess: async () => {
cpSync(resolve('release/pg_dump.wasm'), resolve('dist/pg_dump.wasm'))
}
},
])