Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Kolezhniuk committed Feb 18, 2025
1 parent cce015b commit ec69657
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion scripts/node.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const baseConfig = {
entryPoints: ['src/index.ts'],
bundle: true,
minify: false,
sourcemap: false,
sourcemap: true,
platform: 'node',
target: 'es2022',
outfile: 'dist/node/esm/index.js',
Expand Down
10 changes: 5 additions & 5 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export * from './babyjub';
export * from './poseidon';
export * from './hex';
export * from './base58';
export * from './sha256';
export { Eddsa, eddsa, BabyJub, babyJub, Signature, PublicKey, PrivateKey } from './babyjub';
export { poseidon, Poseidon, OPT } from './poseidon';
export { Hex } from './hex';
export { base58FromBytes, base58ToBytes } from './base58';
export { sha256, Hash } from './sha256';
export { utils as ffUtils, getRandomBytes } from './ff';

0 comments on commit ec69657

Please sign in to comment.