diff options
author | Sebastian <sebasjm@gmail.com> | 2021-10-11 10:22:53 -0300 |
---|---|---|
committer | Sebastian <sebasjm@gmail.com> | 2021-10-11 10:22:53 -0300 |
commit | 78fb5f79a8690ee490c96b271dadd37f4c9442d6 (patch) | |
tree | 0a9956904d69c16b689de6dcf7b3b3e6eed9938e /packages | |
parent | f23a8ee4d356645ae3f91862552b256f230c6bcb (diff) |
fix browser packaging
Diffstat (limited to 'packages')
-rw-r--r-- | packages/taler-util/package.json | 4 | ||||
-rw-r--r-- | packages/taler-util/src/talerCrypto.ts | 3 | ||||
-rw-r--r-- | packages/taler-wallet-core/rollup.config.js | 1 |
3 files changed, 4 insertions, 4 deletions
diff --git a/packages/taler-util/package.json b/packages/taler-util/package.json index 33942abf6..3d92c7610 100644 --- a/packages/taler-util/package.json +++ b/packages/taler-util/package.json @@ -7,7 +7,9 @@ }, "module": "./lib/index.node.js", "main": "./lib/index.node.js", - "browser": "./lib/index.browser.js", + "browser": { + "./lib/index.node.js": "./lib/index.browser.js" + }, "type": "module", "types": "./lib/index.node.d.ts", "typesVersions": { diff --git a/packages/taler-util/src/talerCrypto.ts b/packages/taler-util/src/talerCrypto.ts index aab7571a3..efa92a953 100644 --- a/packages/taler-util/src/talerCrypto.ts +++ b/packages/taler-util/src/talerCrypto.ts @@ -24,9 +24,6 @@ import * as nacl from "./nacl-fast.js"; import { kdf } from "./kdf.js"; import bigint from "big-integer"; -import { initNodePrng } from "./prng-node.js"; - -initNodePrng(); export function getRandomBytes(n: number): Uint8Array { return nacl.randomBytes(n); diff --git a/packages/taler-wallet-core/rollup.config.js b/packages/taler-wallet-core/rollup.config.js index fa5e1905c..927cb8a2e 100644 --- a/packages/taler-wallet-core/rollup.config.js +++ b/packages/taler-wallet-core/rollup.config.js @@ -42,6 +42,7 @@ const browserEntryPoint = { external: builtins, plugins: [ nodeResolve({ + browser: true, preferBuiltins: true, }), |