How to Build
Pack issuer-sdk Into Local NPM Package
In your
issuer-sdkroot directory run the following command
./build-sdk-packageIt will produce
tgzfile{package-name}-{package-version}.tgz
Using the Package Locally
From
didPassroot directory enter the client app that needsissuer-sdkpackage, ex:
cd issuer-demoInside your client app
package.jsonchange thedidpass/issuer-sdkdependency version into the newtgzfilepath
"@didpass/issuer-sdk": "file:../issuer-sdk/{package-name}-{package-version}.tgz",Run
npm installto install the package in your client app
Last updated