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
14 changes: 0 additions & 14 deletions .changeset/brown-deers-hammer.md

This file was deleted.

22 changes: 0 additions & 22 deletions .changeset/nine-snails-speak.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tasty-feet-complain.md

This file was deleted.

38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,43 @@
# Changelog

## 4.0.0

### Major Changes

- f685733: Change the exports map again, to please TypeScript commonjs :)

This is a major breaking change as it requires adjusting your `package.json` exports map.

The `require` entries file extension must be changed from `.d.ts` to `.d.cts`.

```diff
{
"exports": {
".": {
"require": {
- "types": "./dist/typings/index.d.ts",
+ "types": "./dist/typings/index.d.cts"
}
}
}
}
```

### Minor Changes

- 14fa965: Disable commonjs output via package.json

```json
{
"name": "my-package",
"bob": {
"commonjs": false
}
}
```

- b8db426: Ignore `__tests__` and `__testUtils__` from bundling

## 3.0.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bob-the-bundler",
"version": "3.0.5",
"version": "4.0.0",
"description": "Bob The Bundler!",
"author": {
"email": "kamil.kisiela@gmail.com",
Expand Down