File tree 2 files changed +1
-2
lines changed
2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change 14
14
"build" : " trash build && yarn build:main && yarn build:module && yarn build:browser-deps && yarn build:browser && yarn build:browser-cjs" ,
15
15
"build:main" : " tsc -p tsconfig.json" ,
16
16
"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" ,
18
18
"build:browser" : " rollup -c config/exports/rollup.config.js -f es -o build/browser/index.js" ,
19
19
"build:browser-cjs" : " rollup -c config/exports/rollup.config.js -f cjs -o build/browser/index.cjs.js" ,
20
20
"build:tests" : " node config/exports/build-tests.js" ,
Original file line number Diff line number Diff line change 3
3
import hash from 'hash.js'
4
4
5
5
export function createHash ( algorithm : 'sha256' ) {
6
- console . log ( hash )
7
6
return hash . sha256 ( )
8
7
}
You can’t perform that action at this time.
0 commit comments