Skip to content

Commit e6e77c3

Browse files
authored
Merge pull request #9 from shgysk8zer0/bug/exports
Fix `exports`
2 parents 0e71838 + 2f063f6 commit e6e77c3

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [v1.0.5] - 2023-10-01
10+
11+
### Fixed
12+
- Fixed `exports`
13+
914
## [v1.0.4] - 2023-10-01
1015

1116
### Changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shgysk8zer0/http",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"description": "A JavaScript library that provides various utilities for working with HTTP",
55
"keywords": [
66
"http",
@@ -19,11 +19,11 @@
1919
"require": "./cjs/http.cjs"
2020
},
2121
"./*.js": {
22-
"import": "./*",
22+
"import": "./*.js",
2323
"require": "./cjs/*.cjs"
2424
},
2525
"./*": {
26-
"import": "./*",
26+
"import": "./*.js",
2727
"require": "./cjs/*.cjs"
2828
}
2929
},

0 commit comments

Comments
 (0)