Skip to content

Commit

Permalink
fix(build): reorder the types field in package.json (#655)
Browse files Browse the repository at this point in the history
  • Loading branch information
HiChen404 authored Feb 7, 2023
1 parent 4f0158c commit 95d07d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,20 @@
"exports": {
"./package.json": "./package.json",
".": {
"types": "./index.d.ts",
"import": {
"types": "./esm/index.d.mts",
"default": "./esm/index.mjs"
},
"types": "./index.d.ts",
"module": "./esm/index.js",
"default": "./index.js"
},
"./*": {
"types": "./*.d.ts",
"import": {
"types": "./esm/*.d.mts",
"default": "./esm/*.mjs"
},
"types": "./*.d.ts",
"module": "./esm/*.js",
"default": "./*.js"
}
Expand Down

1 comment on commit 95d07d2

@vercel
Copy link

@vercel vercel bot commented on 95d07d2 Feb 7, 2023

Choose a reason for hiding this comment

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

Successfully deployed to the following URLs:

valtio – ./

valtio.vercel.app
valtio-pmndrs.vercel.app
valtio.pmnd.rs
valtio-git-main-pmndrs.vercel.app

Please sign in to comment.