Skip to content

Commit 49ca1a1

Browse files
fix: move "default" conditional exports to be last (#190)
Co-authored-by: Sean Parmelee <[email protected]> Co-authored-by: Ryan Lamb <[email protected]>
1 parent e9cf09d commit 49ca1a1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/sdk/server-node/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
"types": "./dist/src/index.d.ts",
1313
"exports": {
1414
".": {
15-
"default": "./dist/src/index.js",
16-
"types": "./dist/src/index.d.ts"
15+
"types": "./dist/src/index.d.ts",
16+
"default": "./dist/src/index.js"
1717
},
1818
"./integrations": {
19-
"default": "./dist/src/integrations.js",
20-
"types": "./dist/src/integrations.d.ts"
19+
"types": "./dist/src/integrations.d.ts",
20+
"default": "./dist/src/integrations.js"
2121
}
2222
},
2323
"typesVersions": {

0 commit comments

Comments
 (0)