Skip to content

Commit

Permalink
fix: adding esbuild also as optional missing dependency (#324)
Browse files Browse the repository at this point in the history
Signed-off-by: Francisco Javier Ribo Labrador <elribonazo@gmail.com>
  • Loading branch information
elribonazo authored Nov 6, 2024
1 parent 2cdbf1e commit bd3d946
Show file tree
Hide file tree
Showing 3 changed files with 279 additions and 3 deletions.
279 changes: 276 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@
"uuid": "^9.0.0"
},
"optionalDependencies": {
"@esbuild/darwin-arm64": "0.15.18",
"@rollup/rollup-linux-x64-gnu": "^4.24.0"
},
"overrides": {
Expand Down
2 changes: 2 additions & 0 deletions src/edge-agent/didcomm/HandleOOBInvitation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { OutOfBandInvitation } from "../protocols/invitation/v2/OutOfBandInvitat
import { DIDCommContext } from "./Context";
import { CreatePeerDID } from "./CreatePeerDID";
import { HandshakeRequest } from "../protocols/connection/HandshakeRequest";
import { ListenerKey } from "../types";

/**
* Create a connection from an OutOfBandInvitation
Expand Down Expand Up @@ -37,6 +38,7 @@ export class HandleOOBInvitation extends Task<void, Args> {
}
else {
await ctx.Pluto.storeMessage(attachedMsg);
await ctx.ConnectionManager.events.emit(ListenerKey.MESSAGE, [attachedMsg])
}
}
}

1 comment on commit bd3d946

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lines Statements Branches Functions
Coverage: 75%
76.08% (3633/4775) 66.49% (1665/2504) 80.29% (864/1076)

Please sign in to comment.