Skip to content

Commit

Permalink
fix: use ESM export from index file
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-ziv committed Aug 13, 2023
1 parent 098479d commit 01e5c58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/index.ts
@@ -1,6 +1,6 @@
import * as signature from './signature';
import * as asset from './asset';
import * as keyDerivation from './key_derivation';
import * as messageUtils from './message_utils';

module.exports = {...signature, asset, keyDerivation, messageUtils};
export {asset, keyDerivation, messageUtils};
export * from './signature';

0 comments on commit 01e5c58

Please sign in to comment.