Skip to content

Commit 530b58c

Browse files
authored
Merge pull request #3 from PhilanthropyDataCommons/2-fix-package
Fix the build
2 parents 3a7dc5b + 0d1559f commit 530b58c

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

CHANGELOG.md

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

88
## Unreleased
99

10+
## 1.0.1 - 2025-07-10
11+
12+
### Fixed
13+
14+
- Corrected the `package.json` to point to the correct common JS and module indexes.
15+
1016
## 1.0.0 - 2025-07-07
1117

1218
### Added

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "@pdc/http-status-codes",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "An organized collection of meaningfully named HTTP status code constants",
5-
"main": "./dist/index.cjs",
6-
"module": "./dist/index.js",
5+
"main": "./dist/index.js",
6+
"module": "./dist/index.mjs",
77
"types": "./dist/index.d.ts",
88
"scripts": {
99
"build": "npm run build:cleanup && npm run build:node",

0 commit comments

Comments
 (0)