Skip to content

Commit c632f0e

Browse files
curtis-helribonazo
andauthored
fix: adding esbuild also as optional missing dependency (#324) (#326)
Signed-off-by: Francisco Javier Ribo Labrador <[email protected]> Signed-off-by: Curtish <[email protected]> Co-authored-by: Javier Ribó <[email protected]>
1 parent 06a1343 commit c632f0e

3 files changed

Lines changed: 279 additions & 3 deletions

File tree

package-lock.json

Lines changed: 276 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@
164164
"uuid": "^9.0.0"
165165
},
166166
"optionalDependencies": {
167+
"@esbuild/darwin-arm64": "0.15.18",
167168
"@rollup/rollup-linux-x64-gnu": "^4.24.0"
168169
},
169170
"overrides": {

src/edge-agent/didcomm/HandleOOBInvitation.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import { OutOfBandInvitation } from "../protocols/invitation/v2/OutOfBandInvitat
55
import { DIDCommContext } from "./Context";
66
import { CreatePeerDID } from "./CreatePeerDID";
77
import { HandshakeRequest } from "../protocols/connection/HandshakeRequest";
8+
import { ListenerKey } from "../types";
89

910
/**
1011
* Create a connection from an OutOfBandInvitation
@@ -37,6 +38,7 @@ export class HandleOOBInvitation extends Task<void, Args> {
3738
}
3839
else {
3940
await ctx.Pluto.storeMessage(attachedMsg);
41+
await ctx.ConnectionManager.events.emit(ListenerKey.MESSAGE, [attachedMsg])
4042
}
4143
}
4244
}

0 commit comments

Comments
 (0)