Skip to content

Commit

Permalink
fix(cookie-store): added missing import extension (#727)
Browse files Browse the repository at this point in the history
  • Loading branch information
GauBen committed Aug 1, 2023
1 parent 19383c9 commit 265aab1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/nice-rocks-kick.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@whatwg-node/cookie-store': patch
---

Added missing .js extension to import (#726)
2 changes: 1 addition & 1 deletion packages/cookie-store/src/getCookieString.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Cookie, CookieListItem } from './types';
import type { Cookie, CookieListItem } from './types.js';

export function getCookieString(item: CookieListItem | Cookie) {
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
Expand Down

0 comments on commit 265aab1

Please sign in to comment.