Skip to content

Commit

Permalink
correct require() export
Browse files Browse the repository at this point in the history
I'd meant to update the types to point to index.d.ts, and inadvertently
changed the *export* to index.js instead, whoops.

Re: #503
  • Loading branch information
isaacs committed Mar 1, 2023
1 parent f82cb34 commit d89e63a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"default": "./dist/mjs/index.js"
},
"require": {
"types": "./dist/cjs/index-cjs.d.ts",
"default": "./dist/cjs/index.js"
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index-cjs.js"
}
}
},
Expand Down

0 comments on commit d89e63a

Please sign in to comment.