Skip to content

Commit

Permalink
chore: use consistent relative pathing
Browse files Browse the repository at this point in the history
pnpm/pnpm#6997 finally fixes the pack command creating duplicated file,
We can now use relative pathing for main, module and types
  • Loading branch information
Trung Dang committed Nov 3, 2023
1 parent b154d37 commit b028bcd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
"import": "./dist/index.mjs"
}
},
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist"
],
Expand Down

0 comments on commit b028bcd

Please sign in to comment.