|
1 | 1 | # Changelog
|
2 | 2 |
|
| 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 | + |
3 | 41 | ## 5.0.1
|
4 | 42 |
|
5 | 43 | ### Patch Changes
|
|
222 | 260 | | false
|
223 | 261 | | {
|
224 | 262 | /** Files to copy from the package root to dist */
|
225 |
| - copy?: Array<string> |
226 |
| - } |
| 263 | + copy?: Array<string>; |
| 264 | + }; |
227 | 265 | /** Whether the package should be checked. */
|
228 | 266 | check?:
|
229 | 267 | | false
|
230 | 268 | | {
|
231 | 269 | /** Exports within the package that should not be checked. */
|
232 |
| - skip?: Array<string> |
233 |
| - } |
234 |
| - } |
| 270 | + skip?: Array<string>; |
| 271 | + }; |
| 272 | + }; |
235 | 273 | ```
|
236 | 274 |
|
237 | 275 | ## 2.0.0
|
|
0 commit comments