Skip to content

Commit

Permalink
Clean up the list of externals in Rollup configuration (#964)
Browse files Browse the repository at this point in the history
Update the Rollup configuration by cleaning up the list of external
modules to exclude unused modules.
  • Loading branch information
ericcornelissen committed Jun 17, 2023
1 parent b7ae93f commit 640ecf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Check out rollup.js at: https://rollupjs.org/guide/en/

const external = ["fs", "os", "path", "path/win32", "process", "util", "which"];
const external = ["fs", "os", "path", "process", "util", "which"];

export default [
{
Expand Down

0 comments on commit 640ecf4

Please sign in to comment.