diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a1cb8f..4a86c0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## 1.0.1 - 2025-07-10 + +### Fixed + +- Corrected the `package.json` to point to the correct common JS and module indexes. + ## 1.0.0 - 2025-07-07 ### Added diff --git a/package.json b/package.json index 460a90d..2a9058d 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,9 @@ { "name": "@pdc/http-status-codes", - "version": "1.0.0", + "version": "1.0.1", "description": "An organized collection of meaningfully named HTTP status code constants", - "main": "./dist/index.cjs", - "module": "./dist/index.js", + "main": "./dist/index.js", + "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "scripts": { "build": "npm run build:cleanup && npm run build:node",