Skip to content

Commit

Permalink
🐛 add .js extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
astoilkov committed Apr 18, 2024
1 parent 8d35c86 commit 16c4400
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export { default as pSignal } from './src/pSignal'
export { default as AbortError } from './src/AbortError'
export { default as isAbortError } from './src/isAbortError'
export { default as pSignal } from './src/pSignal.js'
export { default as AbortError } from './src/AbortError.js'
export { default as isAbortError } from './src/isAbortError.js'
2 changes: 1 addition & 1 deletion src/pSignal.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import AbortError from './AbortError'
import AbortError from './AbortError.js'

export default async function pSignal<T>(
signal: AbortSignal | undefined,
Expand Down

0 comments on commit 16c4400

Please sign in to comment.