Skip to content

Commit 51b0d9d

Browse files
steveseguinclaude
andcommitted
Fix electron-asio module packaging - include lib and preload files
The build was missing lib/index.js, preload/ipc-handlers.js and preload/asio-preload.js in the packaged app, causing module not found errors at runtime. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent a85eeb6 commit 51b0d9d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,10 @@
109109
"to": "native-modules/electron-asio",
110110
"filter": [
111111
"index.js",
112-
"package.json"
112+
"package.json",
113+
"lib/index.js",
114+
"preload/ipc-handlers.js",
115+
"preload/asio-preload.js"
113116
]
114117
},
115118
{

0 commit comments

Comments
 (0)