Skip to content

Commit 341b0e5

Browse files
authored
Reorder exports (#529)
no ref Types wouldn't get hit because it was after both require and import. This shouldn't be an issue as there's other handling for types, but clears up a build warning.
1 parent 42a1892 commit 341b0e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/referrer-parser/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
"types": "./dist/index.d.ts",
99
"exports": {
1010
".": {
11+
"types": "./dist/index.d.ts",
1112
"import": "./dist/index.js",
12-
"require": "./dist/index.cjs",
13-
"types": "./dist/index.d.ts"
13+
"require": "./dist/index.cjs"
1414
}
1515
},
1616
"files": [

0 commit comments

Comments
 (0)