remove extra build logic
This commit is contained in:

committed by
Geoff Seemueller

parent
88d5b0afba
commit
30582d3f34
10
build.ts
10
build.ts
@@ -2,9 +2,17 @@ import isolatedDecl from 'bun-plugin-isolated-decl';
|
||||
|
||||
// handles building the library
|
||||
await Bun.build({
|
||||
entrypoints: ['./src/*.ts'],
|
||||
entrypoints: [
|
||||
"src/cli.ts",
|
||||
"src/fileExclusions.ts",
|
||||
"src/fileTypeExclusions.ts",
|
||||
"src/index.ts",
|
||||
"src/MarkdownGenerator.ts",
|
||||
"src/TokenCleaner.ts"
|
||||
],
|
||||
outdir: './dist',
|
||||
target: 'node',
|
||||
splitting: true,
|
||||
plugins: [
|
||||
isolatedDecl({
|
||||
forceGenerate: true, // Generate declaration files even if there are errors
|
||||
|
Reference in New Issue
Block a user