|
1 | 1 | # Changelog
|
2 | 2 |
|
| 3 | +## 7.0.0 |
| 4 | + |
| 5 | +### Major Changes |
| 6 | + |
| 7 | +- [#247](https://github.com/kamilkisiela/bob/pull/247) |
| 8 | + [`0a5ff75`](https://github.com/kamilkisiela/bob/commit/0a5ff7507dfc6a569fc3721bc99db45330f46517) |
| 9 | + Thanks [@kamilkisiela](https://github.com/kamilkisiela)! - Remove the `bob runify` command. |
| 10 | + |
| 11 | +- [`87da001`](https://github.com/kamilkisiela/bob/commit/87da00194ad616a31f4788c63a7ebca226a2b85f) |
| 12 | + Thanks [@n1ru4l](https://github.com/n1ru4l)! - Require Node 16 |
| 13 | + |
| 14 | +- [#248](https://github.com/kamilkisiela/bob/pull/248) |
| 15 | + [`20117cd`](https://github.com/kamilkisiela/bob/commit/20117cd209400f1ab61c6df94c937c77bf8db7ef) |
| 16 | + Thanks [@n1ru4l](https://github.com/n1ru4l)! - Require `engines.node` entry with `bob check` |
| 17 | + command. |
| 18 | + |
| 19 | +- [#253](https://github.com/kamilkisiela/bob/pull/253) |
| 20 | + [`f74688c`](https://github.com/kamilkisiela/bob/commit/f74688c024ab8bc6329a745a6c5c25114fdab454) |
| 21 | + Thanks [@n1ru4l](https://github.com/n1ru4l)! - Drop support for typescript 4. |
| 22 | + |
| 23 | +### Patch Changes |
| 24 | + |
| 25 | +- [#201](https://github.com/kamilkisiela/bob/pull/201) |
| 26 | + [`edf3301`](https://github.com/kamilkisiela/bob/commit/edf33014afa82c065ef4900ccbbc414cc864b1b4) |
| 27 | + Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates: |
| 28 | + |
| 29 | + - Updated dependency [`[email protected]` ↗︎ ](https://www.npmjs.com/package/execa/v/7.1.1) (from |
| 30 | + `6.1.0`, in `dependencies`) |
| 31 | + |
| 32 | +- [#229](https://github.com/kamilkisiela/bob/pull/229) |
| 33 | + [`2519f67`](https://github.com/kamilkisiela/bob/commit/2519f6784486d5451873f51940084773ff1dd768) |
| 34 | + Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates: |
| 35 | + |
| 36 | + - Updated dependency [`typescript@^5.0.0` ↗︎](https://www.npmjs.com/package/typescript/v/4.7.4) |
| 37 | + (from `^4.7.4`, in `peerDependencies`) |
| 38 | + |
| 39 | +- [#244](https://github.com/kamilkisiela/bob/pull/244) |
| 40 | + [`f7b5824`](https://github.com/kamilkisiela/bob/commit/f7b58246e0aeb00f12b8238d30c986e00aa92891) |
| 41 | + Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates: |
| 42 | + |
| 43 | + - Updated dependency [`consola@^3.0.0` ↗︎](https://www.npmjs.com/package/consola/v/3.0.0) (from |
| 44 | + `^2.15.3`, in `dependencies`) |
| 45 | + |
| 46 | +- [#247](https://github.com/kamilkisiela/bob/pull/247) |
| 47 | + [`0a5ff75`](https://github.com/kamilkisiela/bob/commit/0a5ff7507dfc6a569fc3721bc99db45330f46517) |
| 48 | + Thanks [@kamilkisiela](https://github.com/kamilkisiela)! - dependencies updates: |
| 49 | + |
| 50 | + - Removed dependency |
| 51 | + [`@vercel/ncc@^0.36.0` ↗︎](https://www.npmjs.com/package/@vercel/ncc/v/0.36.0) (from |
| 52 | + `dependencies`) |
| 53 | + - Removed dependency |
| 54 | + [`dependency-graph@^0.11.0` ↗︎](https://www.npmjs.com/package/dependency-graph/v/0.11.0) (from |
| 55 | + `dependencies`) |
| 56 | + - Removed dependency [`tsup@^6.5.0` ↗︎](https://www.npmjs.com/package/tsup/v/6.5.0) (from |
| 57 | + `dependencies`) |
| 58 | + |
3 | 59 | ## 6.0.0
|
4 | 60 |
|
5 | 61 | ### Major Changes
|
|
260 | 316 | | false
|
261 | 317 | | {
|
262 | 318 | /** Files to copy from the package root to dist */
|
263 |
| - copy?: Array<string> |
264 |
| - } |
| 319 | + copy?: Array<string>; |
| 320 | + }; |
265 | 321 | /** Whether the package should be checked. */
|
266 | 322 | check?:
|
267 | 323 | | false
|
268 | 324 | | {
|
269 | 325 | /** Exports within the package that should not be checked. */
|
270 |
| - skip?: Array<string> |
271 |
| - } |
272 |
| - } |
| 326 | + skip?: Array<string>; |
| 327 | + }; |
| 328 | + }; |
273 | 329 | ```
|
274 | 330 |
|
275 | 331 | ## 2.0.0
|
|
0 commit comments