Skip to content

Commit

Permalink
build: don't use ./ in paths in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfy1339 committed Mar 16, 2023
1 parent 76988be commit 169338b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/build.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ async function main() {
{
...pkg,
files: ["dist-*/**", "bin/**"],
main: "./dist-node/index.js",
module: "./dist-web/index.js",
types: "./dist-src/index.d.ts",
source: "./dist-src/index.js",
main: "dist-node/index.js",
module: "dist-web/index.js",
types: "dist-src/index.d.ts",
source: "dist-src/index.js",
},
null,
2
Expand Down

0 comments on commit 169338b

Please sign in to comment.