Skip to content

Commit

Permalink
Error output added to build.js sample in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tecsoc authored Oct 14, 2023
1 parent f34cfe6 commit 4999796
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ require('esbuild').build({
bundle: true,
outfile: 'dist/bundle.js',
plugins: [GasPlugin]
}).catch(() => process.exit(1))
}).catch((e) => {
console.error(e)
process.exit(1)
})
```

and
Expand Down

0 comments on commit 4999796

Please sign in to comment.