Skip to content

Commit

Permalink
build: fix wrong export definition
Browse files Browse the repository at this point in the history
  • Loading branch information
CatsJuice committed Jul 24, 2023
1 parent b528a46 commit 6a700ea
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
"repository": "https://github.com/catsjuice/dockbar/",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/dockbar.js"
"types": "./types/index.d.ts",
"import": "./dockbar.js"
}
},
"main": "./dist/dockbar.js",
"module": "./dist/dockbar.js",
"types": "./dist/types/index.d.ts",
"main": "./dockbar.js",
"module": "./dockbar.js",
"types": "./types/index.d.ts",
"scripts": {
"postinstall": "npx simple-git-hooks",
"dev": "cd packages/dockbar && pnpm dev",
Expand Down
6 changes: 3 additions & 3 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6a700ea

Please sign in to comment.