Skip to content

Commit

Permalink
Merge pull request #9 from CrispyBacon1999/fixDist
Browse files Browse the repository at this point in the history
Fix package.json entry points
  • Loading branch information
CrispyBacon1999 authored Feb 15, 2023
2 parents b387276 + 261fc5a commit cf98fb3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"nt4",
"react"
],
"version": "1.0.1",
"version": "1.1.0",
"type": "module",
"license": "MIT",
"scripts": {
Expand Down Expand Up @@ -53,16 +53,16 @@
},
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js",
"import": "./dist/ntcore-react.es.js",
"require": "./dist/ntcore-react.umd.js",
"types": "./dist/index.d.ts"
}
},
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"main": "dist/ntcore-react.umd.js",
"module": "dist/ntcore-react.es.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"readme.md"
]
}
}

0 comments on commit cf98fb3

Please sign in to comment.