Skip to content

Commit

Permalink
fix: change export order in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
kioltk authored Feb 9, 2024
1 parent 5f154fe commit 0531f97
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
"author": "Muspi Merol <me@promplate.dev>",
"exports": {
".": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./options": {
"default": "./dist/options.js",
"types": "./dist/options.d.ts"
"types": "./dist/options.d.ts",
"default": "./dist/options.js"
}
},
"main": "dist/index.js",
Expand Down

1 comment on commit 0531f97

@vercel
Copy link

@vercel vercel bot commented on 0531f97 Feb 9, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.