File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed
Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 11### Bug fixes
22
3- - Fixed ` algorythm ` => ` algorithm ` typo
3+ - Fixed ` algorythm ` => ` algorithm ` typo.
4+ - Fixed external dependencies in build configuration.
Original file line number Diff line number Diff line change @@ -84,7 +84,11 @@ const main = async () => {
8484 await tsup . build ( {
8585 entryPoints : [ './src/index.ts' ] ,
8686 outDir : './dist' ,
87- external : [ 'bun:sqlite' ] ,
87+ external : [
88+ 'esbuild' ,
89+ 'drizzle-orm' ,
90+ ...driversPackages ,
91+ ] ,
8892 splitting : false ,
8993 dts : true ,
9094 format : [ 'cjs' , 'esm' ] ,
@@ -105,7 +109,11 @@ const main = async () => {
105109 await tsup . build ( {
106110 entryPoints : [ './src/api.ts' ] ,
107111 outDir : './dist' ,
108- external : [ 'bun:sqlite' ] ,
112+ external : [
113+ 'esbuild' ,
114+ 'drizzle-orm' ,
115+ ...driversPackages ,
116+ ] ,
109117 splitting : false ,
110118 dts : true ,
111119 format : [ 'cjs' , 'esm' ] ,
You can’t perform that action at this time.
0 commit comments