Skip to content

Commit 1fe0b10

Browse files
committed
fix(hash.js): correctly pre-build hash.js for the browser
1 parent 01f67d1 commit 1fe0b10

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"build": "trash build && yarn build:main && yarn build:module && yarn build:browser-deps && yarn build:browser && yarn build:browser-cjs",
1515
"build:main": "tsc -p tsconfig.json",
1616
"build:module": "tsc -p config/exports/tsconfig.module.json",
17-
"build:browser-deps": "mkdirp build/temp && browserify node_modules/hash.js/lib/hash.js -o build/temp/hash.js",
17+
"build:browser-deps": "mkdirp build/temp && browserify node_modules/hash.js/lib/hash.js --standalone hash -o build/temp/hash.js",
1818
"build:browser": "rollup -c config/exports/rollup.config.js -f es -o build/browser/index.js",
1919
"build:browser-cjs": "rollup -c config/exports/rollup.config.js -f cjs -o build/browser/index.cjs.js",
2020
"build:tests": "node config/exports/build-tests.js",

src/adapters/crypto.browser.ts

-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@
33
import hash from 'hash.js'
44

55
export function createHash (algorithm: 'sha256') {
6-
console.log(hash)
76
return hash.sha256()
87
}

0 commit comments

Comments
 (0)