Skip to content

Commit

Permalink
feat: Change default output directory
Browse files Browse the repository at this point in the history
The default output directory has been changed from './dist' to './out'. This
change is to align with the project's directory structure conventions.
  • Loading branch information
ryoppippi committed Aug 6, 2024
1 parent 116b836 commit 3353938
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function isolatedDecl(options: Options = {}): BunPlugin {
async setup(build): Promise<void> {
const entrypoints = [...build.config.entrypoints].sort();
const entriies: Entry[] = [];
const outdir = (build.config?.outdir ?? './dist');
const outdir = (build.config?.outdir ?? './out');
const resolvedOptions = { forceGenerate: false, ...options } satisfies Options;

for (const entry of entrypoints) {
Expand Down

0 comments on commit 3353938

Please sign in to comment.