fix browser packaging

This commit is contained in:
Sebastian 2021-10-11 10:22:53 -03:00
parent f23a8ee4d3
commit 78fb5f79a8
No known key found for this signature in database
GPG Key ID: BE4FF68352439FC1
3 changed files with 4 additions and 4 deletions

View File

@ -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": {

View File

@ -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);

View File

@ -42,6 +42,7 @@ const browserEntryPoint = {
external: builtins,
plugins: [
nodeResolve({
browser: true,
preferBuiltins: true,
}),