Skip to content

Commit

Permalink
Fix ESM exports
Browse files Browse the repository at this point in the history
  • Loading branch information
Borewit committed Nov 4, 2023
1 parent 565837e commit be687bd
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"name": "bounded-queue",
"version": "0.1.1",
"description": "Bounded batch queue, where items are produced and consumed based on user specified functions",
"main": "index.js",
"type": "module",
"license": "MIT",
"private": false,
Expand All @@ -11,9 +10,9 @@
"npm": ">= 6.0.0"
},
"exports": {
".": "./src/batch-queue.js"
".": "./src/bounded-queue.js"
},
"types": "src/batch-queue.d.ts",
"types": "src/bounded-queue.d.ts",
"files": [
"src/**/*.js",
"src/**/*.d.ts"
Expand Down

0 comments on commit be687bd

Please sign in to comment.