Skip to content

Commit dd49959

Browse files
authored
fix: move default export to be the last one in package.json (#31)
1 parent 74be398 commit dd49959

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,22 +18,22 @@
1818
],
1919
"exports": {
2020
".": {
21-
"default": "./dist/index.js",
2221
"import": "./dist/index.js",
2322
"node": "./dist/index.js",
24-
"types": "./dist/index.d.ts"
23+
"types": "./dist/index.d.ts",
24+
"default": "./dist/index.js"
2525
},
2626
"./commands": {
27-
"default": "./dist/commands.js",
2827
"import": "./dist/commands.js",
2928
"node": "./dist/commands.js",
30-
"types": "./dist/commands.d.ts"
29+
"types": "./dist/commands.d.ts",
30+
"default": "./dist/commands.js"
3131
},
3232
"./commands.js": {
33-
"default": "./dist/commands.js",
3433
"import": "./dist/commands.js",
3534
"node": "./dist/commands.js",
36-
"types": "./dist/commands.d.ts"
35+
"types": "./dist/commands.d.ts",
36+
"default": "./dist/commands.js"
3737
}
3838
},
3939
"engines": {

0 commit comments

Comments
 (0)