Skip to content

Commit

Permalink
Update package.json
Browse files Browse the repository at this point in the history
Updated package/exports list to work with newer versions of Node
  • Loading branch information
coreybutler committed Feb 28, 2022
1 parent 0c4099a commit 48f5fc3
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
{
"name": "@ngnjs/queue",
"version": "1.0.0-alpha.11",
"version": "1.0.0-alpha.12",
"description": "A lightweight NGN queue (taskrunner).",
"type": "module",
"main": "src/index.js",
"main": "./src/index.js",
"module": "index.js",
"exports": {
".": {
"import": "./index.js"
}
},
"browser": "./index.js",
"directories": {
"lib": "src/lib"
},
"sideEffects": false,
"author": "Corey Butler",
"private": false,
"license": "MIT",
Expand Down

0 comments on commit 48f5fc3

Please sign in to comment.