Skip to content

Commit

Permalink
Revert "build: added logic to bundle.ts to output all files generated"
Browse files Browse the repository at this point in the history
This reverts commit 713ebd0.
  • Loading branch information
flamingquaks committed May 14, 2024
1 parent 5f1a6c0 commit 851f077
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions lib/api/functions/bundle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,5 @@ esbuild.build({
target: 'esnext',
format: 'esm',
minify: false,
logLevel: 'info',
plugins: [
{
name: 'log-files',
setup (build) {
build.onLoad({ filter: /.*/ }, (args) => {
console.log(`Building: ${args.path}`)
return null
})
}
}
]
logLevel: 'info'
}).catch(() => process.exit(1))

0 comments on commit 851f077

Please sign in to comment.