Skip to content

Commit

Permalink
Merge pull request #9 from shgysk8zer0/bug/exports
Browse files Browse the repository at this point in the history
Fix `exports`
  • Loading branch information
shgysk8zer0 authored Oct 1, 2023
2 parents 0e71838 + 2f063f6 commit e6e77c3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [v1.0.5] - 2023-10-01

### Fixed
- Fixed `exports`

## [v1.0.4] - 2023-10-01

### Changed
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shgysk8zer0/http",
"version": "1.0.4",
"version": "1.0.5",
"description": "A JavaScript library that provides various utilities for working with HTTP",
"keywords": [
"http",
Expand All @@ -19,11 +19,11 @@
"require": "./cjs/http.cjs"
},
"./*.js": {
"import": "./*",
"import": "./*.js",
"require": "./cjs/*.cjs"
},
"./*": {
"import": "./*",
"import": "./*.js",
"require": "./cjs/*.cjs"
}
},
Expand Down

0 comments on commit e6e77c3

Please sign in to comment.