Skip to content

Commit 82f560c

Browse files
committedFeb 21, 2025
build: fix typo in exports
resolves #232
1 parent 67b3206 commit 82f560c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,21 @@
1010
".": {
1111
"import": {
1212
"types": "./dist/index.d.mts",
13-
"default:": "./dist/index.mjs"
13+
"default": "./dist/index.mjs"
1414
},
1515
"require": {
1616
"types": "./dist/index.d.cts",
17-
"default:": "./dist/index.cjs"
17+
"default": "./dist/index.cjs"
1818
}
1919
},
2020
"./update": {
2121
"import": {
2222
"types": "./dist/update.d.mts",
23-
"default:": "./dist/update.mjs"
23+
"default": "./dist/update.mjs"
2424
},
2525
"require": {
2626
"types": "./dist/update.d.cts",
27-
"default:": "./dist/update.cjs"
27+
"default": "./dist/update.cjs"
2828
}
2929
}
3030
},

0 commit comments

Comments
 (0)
Please sign in to comment.