Skip to content

Commit 11b8532

Browse files
chore(release): update monorepo packages versions (#113)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent f685733 commit 11b8532

File tree

5 files changed

+39
-42
lines changed

5 files changed

+39
-42
lines changed

.changeset/brown-deers-hammer.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

.changeset/nine-snails-speak.md

Lines changed: 0 additions & 22 deletions
This file was deleted.

.changeset/tasty-feet-complain.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,43 @@
11
# Changelog
22

3+
## 4.0.0
4+
5+
### Major Changes
6+
7+
- f685733: Change the exports map again, to please TypeScript commonjs :)
8+
9+
This is a major breaking change as it requires adjusting your `package.json` exports map.
10+
11+
The `require` entries file extension must be changed from `.d.ts` to `.d.cts`.
12+
13+
```diff
14+
{
15+
"exports": {
16+
".": {
17+
"require": {
18+
- "types": "./dist/typings/index.d.ts",
19+
+ "types": "./dist/typings/index.d.cts"
20+
}
21+
}
22+
}
23+
}
24+
```
25+
26+
### Minor Changes
27+
28+
- 14fa965: Disable commonjs output via package.json
29+
30+
```json
31+
{
32+
"name": "my-package",
33+
"bob": {
34+
"commonjs": false
35+
}
36+
}
37+
```
38+
39+
- b8db426: Ignore `__tests__` and `__testUtils__` from bundling
40+
341
## 3.0.5
442

543
### Patch Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bob-the-bundler",
3-
"version": "3.0.5",
3+
"version": "4.0.0",
44
"description": "Bob The Bundler!",
55
"author": {
66
"email": "[email protected]",

0 commit comments

Comments
 (0)