Skip to content

Commit

Permalink
Apply publint recommendations (#803)
Browse files Browse the repository at this point in the history
* Apply publit recommendations

* Fix publint warnings

* Fix publint warnings

* Minor changes

* Update package.json
  • Loading branch information
dbritto-dev authored Nov 3, 2023
1 parent e3dca65 commit 738d425
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,32 @@
"exports": {
"./package.json": "./package.json",
".": {
"types": "./index.d.ts",
"import": {
"types": "./esm/index.d.mts",
"default": "./esm/index.mjs"
},
"module": "./esm/index.js",
"default": "./index.js"
"module": {
"types": "./esm/index.d.ts",
"default": "./esm/index.js"
},
"default": {
"types": "./index.d.ts",
"default": "./index.js"
}
},
"./*": {
"types": "./*.d.ts",
"import": {
"types": "./esm/*.d.mts",
"default": "./esm/*.mjs"
},
"module": "./esm/*.js",
"default": "./*.js"
"module": {
"types": "./esm/*.d.ts",
"default": "./esm/*.js"
},
"default": {
"types": "./*.d.ts",
"default": "./*.js"
}
}
},
"files": [
Expand Down

1 comment on commit 738d425

@vercel
Copy link

@vercel vercel bot commented on 738d425 Nov 3, 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-git-main-pmndrs.vercel.app
valtio-pmndrs.vercel.app
valtio.vercel.app
valtio.pmnd.rs

Please sign in to comment.