Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to Compressor.js Next are documented in this file, which is

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and the project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.1.2] - 2026-02-16

### Fixed

* Added `types` condition to `exports` field so TypeScript finds type declarations with modern `moduleResolution` settings ([#21](https://github.com/j9t/compressorjs-next/issues/21))

## [1.1.1] - 2026-02-15

### 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.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
},
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/compressor.esm.js",
"require": "./dist/compressor.common.js"
}
Expand Down Expand Up @@ -92,5 +93,5 @@
"sideEffects": false,
"type": "module",
"types": "types/index.d.ts",
"version": "1.1.1"
"version": "1.1.2"
}