Skip to content

Commit 169338b

Browse files
committed
build: don't use ./ in paths in package.json
1 parent 76988be commit 169338b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/build.mjs

+4-4
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,10 @@ async function main() {
7171
{
7272
...pkg,
7373
files: ["dist-*/**", "bin/**"],
74-
main: "./dist-node/index.js",
75-
module: "./dist-web/index.js",
76-
types: "./dist-src/index.d.ts",
77-
source: "./dist-src/index.js",
74+
main: "dist-node/index.js",
75+
module: "dist-web/index.js",
76+
types: "dist-src/index.d.ts",
77+
source: "dist-src/index.js",
7878
},
7979
null,
8080
2

0 commit comments

Comments
 (0)