Skip to content

Commit

Permalink
Fix it as it was before having proved that compatibility check is not…
Browse files Browse the repository at this point in the history
… false-positive
  • Loading branch information
oskardudycz committed Mar 9, 2024
1 parent f401934 commit 9db4a81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/emmett/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ export default defineConfig({
clean: true, // clean up the dist folder
dts: true, // generate dts files
format: ['cjs', 'esm'], // generate cjs and esm files
minify: false, //env === 'production',
bundle: false, //env === 'production',
minify: true, //env === 'production',
bundle: true, //env === 'production',
skipNodeModulesBundle: true,
entryPoints: ['src/index.ts'],
watch: env === 'development',
Expand Down

0 comments on commit 9db4a81

Please sign in to comment.