Skip to content

Commit

Permalink
smallfix
Browse files Browse the repository at this point in the history
  • Loading branch information
ukyo committed Mar 21, 2018
1 parent 4d371a9 commit 22c1802
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"name": "jsziptools",
"version": "3.0.0-rc1",
"description": "It's a utility of zlib, gzip and zip format binary data.",
"main": "./dist/index.bundle.js",
"types": "./dist/src/index.d.ts",
"main": "./dist-npm/index.js",
"types": "./dist-npm/index.d.ts",
"directories": {
"example": "examples",
"test": "test"
Expand Down
2 changes: 1 addition & 1 deletion src/core/zlib_backend_wrapper.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as zlib from '../../node_modules/zlib-asm/index';
import * as zlib from 'zlib-asm';

export interface ZlibBackend {
deflate(buffer: Uint8Array, compressionLevel?: number, chunkSize?: number): Uint8Array;
Expand Down

0 comments on commit 22c1802

Please sign in to comment.