Commit 08474bc
committed
fix(ci): correct socket package verification in build-sea workflow
The socket package produces bootstrap.js, not index.mjs.
Verification was checking for wrong file causing false failure.
Socket package.json shows:
"bin": {
"socket": "./dist/bootstrap.js"
}
Build produces:
- packages/socket/dist/bootstrap.js
- packages/socket/dist/bootstrap-smol.js
Not:
- packages/socket/dist/index.mjs (doesn't exist)1 parent 445f602 commit 08474bc
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
158 | 158 | | |
159 | 159 | | |
160 | 160 | | |
161 | | - | |
| 161 | + | |
162 | 162 | | |
163 | 163 | | |
164 | 164 | | |
| |||
0 commit comments