How to Build
Pack issuer-sdk Into Local NPM Package
In your
issuer-sdk
root directory run the following command
./build-sdk-package
It will produce
tgz
file{package-name}-{package-version}.tgz
Using the Package Locally
From
didPass
root directory enter the client app that needsissuer-sdk
package, ex:
cd issuer-demo
Inside your client app
package.json
change thedidpass/issuer-sdk
dependency version into the newtgz
filepath
"@didpass/issuer-sdk": "file:../issuer-sdk/{package-name}-{package-version}.tgz",
Run
npm install
to install the package in your client app
Last updated