Skip to content

Commit 14ef23e

Browse files
Upcoming Release Changes (#196)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 76b4496 commit 14ef23e

File tree

7 files changed

+44
-40
lines changed

7 files changed

+44
-40
lines changed

.changeset/bright-ducks-agree.md

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

.changeset/lazy-mails-bow.md

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

.changeset/proud-hairs-promise.md

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

.changeset/red-badgers-shop.md

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

.changeset/yellow-carrots-teach.md

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

CHANGELOG.md

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

3+
## 6.0.0
4+
5+
### Major Changes
6+
7+
- [#202](https://github.com/kamilkisiela/bob/pull/202)
8+
[`2236863`](https://github.com/kamilkisiela/bob/commit/223686314b011c54fd1930a2555eb6dab7ccd9b5)
9+
Thanks [@enisdenjo](https://github.com/enisdenjo)! - Custom tsconfig path for the build command,
10+
default to `tsconfig.build.json` and fallback to `tsconfig.json`.
11+
12+
- [#203](https://github.com/kamilkisiela/bob/pull/203)
13+
[`3b7efdc`](https://github.com/kamilkisiela/bob/commit/3b7efdc8cea6f01f9a4640f3bf7e90da5dac7d05)
14+
Thanks [@ardatan](https://github.com/ardatan)! - **Breaking** `jest-resolver.js` renamed to
15+
`jest-resolver.cjs` because Bob package is an ESM package.
16+
17+
Please make sure to adjust your `jest.config.js`.
18+
19+
```diff
20+
- resolver: 'bob-the-bundler/jest-resolver.js'
21+
+ resolver: 'bob-the-bundler/jest-resolver.cjs'
22+
```
23+
24+
### Patch Changes
25+
26+
- [#214](https://github.com/kamilkisiela/bob/pull/214)
27+
[`1567b4d`](https://github.com/kamilkisiela/bob/commit/1567b4d8e667286adc388cb2fac78bb92dd2b053)
28+
Thanks [@enisdenjo](https://github.com/enisdenjo)! - Include empty cjs/esm entry points for
29+
types-only packages
30+
31+
- [#37](https://github.com/kamilkisiela/bob/pull/37)
32+
[`c912002`](https://github.com/kamilkisiela/bob/commit/c912002e6625d9fb5d56b7fb3dbd79ac80018aec)
33+
Thanks [@kamilkisiela](https://github.com/kamilkisiela)! - better windows support for paths in the
34+
runify command.
35+
36+
- [#210](https://github.com/kamilkisiela/bob/pull/210)
37+
[`ad9fb40`](https://github.com/kamilkisiela/bob/commit/ad9fb4044ac59c6962203f03f1dfbc0ec0df271f)
38+
Thanks [@enisdenjo](https://github.com/enisdenjo)! - exports field should exist in types-only
39+
builds
40+
341
## 5.0.1
442

543
### Patch Changes
@@ -222,16 +260,16 @@
222260
| false
223261
| {
224262
/** Files to copy from the package root to dist */
225-
copy?: Array<string>
226-
}
263+
copy?: Array<string>;
264+
};
227265
/** Whether the package should be checked. */
228266
check?:
229267
| false
230268
| {
231269
/** Exports within the package that should not be checked. */
232-
skip?: Array<string>
233-
}
234-
}
270+
skip?: Array<string>;
271+
};
272+
};
235273
```
236274

237275
## 2.0.0

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": "5.0.1",
3+
"version": "6.0.0",
44
"type": "module",
55
"description": "Bob The Bundler!",
66
"repository": {

0 commit comments

Comments
 (0)