Skip to content

Commit

Permalink
export type in package.json should-forward-prop path (#575)
Browse files Browse the repository at this point in the history
* export type in package.json should-forward-prop path

* export types in prefixer and global subpaths
  • Loading branch information
cindyvciandt committed Jan 13, 2024
1 parent a849b2d commit 431ff74
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,17 +44,20 @@
"./global": {
"import": "./global/dist/goober-global.modern.js",
"require": "./global/dist/goober-global.cjs",
"umd": "./global/dist/goober-global.umd.js"
"umd": "./global/dist/goober-global.umd.js",
"types": "./global/global.d.ts"
},
"./prefixer": {
"import": "./prefixer/dist/goober-autoprefixer.modern.js",
"require": "./prefixer/dist/goober-autoprefixer.cjs",
"umd": "./prefixer/dist/goober-autoprefixer.umd.js"
"umd": "./prefixer/dist/goober-autoprefixer.umd.js",
"types": "./prefixer/autoprefixer.d.ts"
},
"./should-forward-prop": {
"import": "./should-forward-prop/dist/goober-should-forward-prop.modern.js",
"require": "./should-forward-prop/dist/goober-should-forward-prop.cjs",
"umd": "./should-forward-prop/dist/goober-should-forward-prop.umd.js"
"umd": "./should-forward-prop/dist/goober-should-forward-prop.umd.js",
"types": "./should-forward-prop/should-forward-prop.d.ts"
}
},
"scripts": {
Expand Down

0 comments on commit 431ff74

Please sign in to comment.