Skip to content

Commit

Permalink
feat(esbuild-meta): default filter dynamic to false
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherPHolder committed Apr 15, 2024
1 parent 6cda9a1 commit 56a9256
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/esbuild-meta/src/lib/filter-meta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ const excludeDynamicImports = {
alias: 'eDI',
type: 'boolean',
description: 'Should the dynamic imports be filtered out of the output chunk imports',
default: true,
} as const satisfies Options
default: false,
} as const satisfies Options;

const filterMetaOptions = { distPath, appDist, outPath, excludeDynamicImports };

Expand Down

0 comments on commit 56a9256

Please sign in to comment.