Skip to content

Commit 0b0127f

Browse files
fix exports and bump up version (see #599)
1 parent 5672184 commit 0b0127f

File tree

3 files changed

+12
-19
lines changed

3 files changed

+12
-19
lines changed

deno.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@zip-js/zip-js",
3-
"version": "2.8.0",
3+
"version": "2.8.1",
44
"exports": {
55
".": "./index.js"
66
},
@@ -14,7 +14,6 @@
1414
]
1515
},
1616
"exclude": [
17-
"cli-deno",
1817
"rollup*",
1918
"tsconfig.json",
2019
".vscode",

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 9 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "A JavaScript library to zip and unzip files in the browser, Deno and Node.js",
44
"author": "Gildas Lormeau",
55
"license": "BSD-3-Clause",
6-
"version": "2.8.0",
6+
"version": "2.8.1",
77
"type": "module",
88
"keywords": [
99
"zip",
@@ -66,31 +66,25 @@
6666
},
6767
"./lib/zip-fs.js": {
6868
"import": {
69-
"types": "./lib/zip-fs.d.ts",
69+
"types": "./index.d.ts",
7070
"default": "./lib/zip-fs.js"
7171
}
7272
},
73-
"./lib/zip-full.js": {
74-
"import": {
75-
"types": "./lib/zip-full.d.ts",
76-
"default": "./lib/zip-full.js"
77-
}
78-
},
79-
"./lib/zip-no-worker-deflate.js": {
73+
"./lib/zip-core.js": {
8074
"import": {
81-
"types": "./lib/zip-no-worker-deflate.d.ts",
82-
"default": "./lib/zip-no-worker-deflate.js"
75+
"types": "./index.d.ts",
76+
"default": "./lib/zip-core.js"
8377
}
8478
},
85-
"./lib/zip-no-worker-inflate.js": {
79+
"./lib/zip-fs-core.js": {
8680
"import": {
87-
"types": "./lib/zip-no-worker-inflate.d.ts",
88-
"default": "./lib/zip-no-worker-inflate.js"
81+
"types": "./index.d.ts",
82+
"default": "./lib/zip-fs-core.js"
8983
}
9084
},
9185
"./lib/zip.js": {
9286
"import": {
93-
"types": "./lib/zip.d.ts",
87+
"types": "./index.d.ts",
9488
"default": "./lib/zip.js"
9589
}
9690
}

0 commit comments

Comments
 (0)