Skip to content

Commit

Permalink
fix: move default export to be the last option
Browse files Browse the repository at this point in the history
  • Loading branch information
aralroca committed Jul 17, 2023
1 parent 53e561e commit a2920ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "default-composer",
"version": "0.5.0",
"version": "0.5.1",
"description": "A JavaScript library that allows you to set default values for nested objects",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.m.js",
"exports": {
"require": "./dist/index.js",
"default": "./dist/index.modern.mjs",
"types": "./dist/index.d.ts"
"types": "./dist/index.d.ts",
"default": "./dist/index.modern.mjs"
},
"files": [
"dist"
Expand Down

0 comments on commit a2920ad

Please sign in to comment.