diff --git a/CHANGELOG.md b/CHANGELOG.md index bf3c377..a54f48c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ - Fixed a compilation error for the generated code of `function` expressions in stat mode in some cases - Fixed a runtime error for a `comparator function` in some scenarios - Fixed support for TypedArrays with slice notation and methods such as `numbers()`, `avg()`, `count()`, `sum()`, `median()`, `variance()`, `stdev()` and `percentile()` +- Added missing package exports for `package.json` and `dist/*` ## 1.0.0-beta.12 (July 2, 2024) diff --git a/package.json b/package.json index 2f1f06c..5be0449 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,9 @@ ".": { "import": "./src/index.js", "require": "./cjs/index.cjs" - } + }, + "./dist/*": "./dist/*", + "./package.json": "./package.json" }, "scripts": { "lint": "eslint src test docs",