We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If the only dependency installed is "@transmute/did-key-secp256k1": "^0.2.1-unstable.35", this code:
"@transmute/did-key-secp256k1": "^0.2.1-unstable.35"
'use strict' const { Secp256k1KeyPair } = require('@transmute/did-key-secp256k1')
— fails with the error:
➜ test node ./index.js node:internal/modules/cjs/loader:928 throw err; ^ Error: Cannot find module 'tslib' Require stack: - /Users/ak/Development/kravc/test/node_modules/@transmute/did-key-secp256k1/dist/did-key-secp256k1.cjs.development.js - /Users/ak/Development/kravc/test/node_modules/@transmute/did-key-secp256k1/dist/index.js - /Users/ak/Development/kravc/test/index.js
The text was updated successfully, but these errors were encountered:
This seems to happen with "^0.3.0-unstable.5", fixed with npm install tslib.
"^0.3.0-unstable.5"
npm install tslib
Sorry, something went wrong.
No branches or pull requests
If the only dependency installed is
"@transmute/did-key-secp256k1": "^0.2.1-unstable.35"
, this code:— fails with the error:
The text was updated successfully, but these errors were encountered: