-
Notifications
You must be signed in to change notification settings - Fork 204
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(indy-vdr): export relevant packages from root (#1291)
Signed-off-by: Karim Stekelenburg <[email protected]>
- Loading branch information
1 parent
c72fd74
commit b570e0f
Showing
4 changed files
with
17 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from './IndyVdrAnonCredsRegistry' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
export { IndyVdrSovDidResolver } from './dids' | ||
|
||
try { | ||
// eslint-disable-next-line import/no-extraneous-dependencies | ||
require('@hyperledger/indy-vdr-nodejs') | ||
} catch (error) { | ||
throw new Error('Error registering nodejs bindings for Indy VDR') | ||
} | ||
export * from './IndyVdrModule' | ||
export * from './IndyVdrModuleConfig' | ||
export * from './anoncreds' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
// Needed to register indy-vdr node bindings | ||
import '../src/index' | ||
|
||
require('@hyperledger/indy-vdr-nodejs') | ||
|
||
jest.setTimeout(60000) |