|
1 | 1 | # Changelog
|
2 | 2 |
|
| 3 | +## 5.0.0 |
| 4 | + |
| 5 | +### Major Changes |
| 6 | + |
| 7 | +- [#167](https://github.com/kamilkisiela/bob/pull/167) |
| 8 | + [`d095697`](https://github.com/kamilkisiela/bob/commit/d0956978c70419c9f5203b3d8f85028589a51e66) |
| 9 | + Thanks [@B2o5T](https://github.com/B2o5T)! - bundle bob in esm instead cjs |
| 10 | + |
| 11 | +### Minor Changes |
| 12 | + |
| 13 | +- [#160](https://github.com/kamilkisiela/bob/pull/160) |
| 14 | + [`9ce6e27`](https://github.com/kamilkisiela/bob/commit/9ce6e279f362b78a6e925f1e038a1b611931ad55) |
| 15 | + Thanks [@B2o5T](https://github.com/B2o5T)! - Support pnpm workspaces from `pnpm-workspace.yaml`.. |
| 16 | + Throw an error in case both `pnpm-workspace.yaml` and `package.json#workspaces` fields exist. Add |
| 17 | + missing dependency `execa`. Cleanup and remove unused dependencies. |
| 18 | + |
| 19 | +### Patch Changes |
| 20 | + |
| 21 | +- [#145](https://github.com/kamilkisiela/bob/pull/145) |
| 22 | + [`a4ebd65`](https://github.com/kamilkisiela/bob/commit/a4ebd655dd76c8703edb64605f0de2dd58870263) |
| 23 | + Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates: |
| 24 | + |
| 25 | + - Updated dependency |
| 26 | + [`rollup-plugin-typescript2@^0.34.0` ↗︎](https://www.npmjs.com/package/rollup-plugin-typescript2/v/0.34.0) |
| 27 | + (from `^0.33.0`, in `dependencies`) |
| 28 | + |
| 29 | +- [#150](https://github.com/kamilkisiela/bob/pull/150) |
| 30 | + [`e18b500`](https://github.com/kamilkisiela/bob/commit/e18b500cc3807d7a76ad38639ef1cc59c1eab987) |
| 31 | + Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates: |
| 32 | + |
| 33 | + - Updated dependency |
| 34 | + [`@vercel/ncc@^0.36.0` ↗︎](https://www.npmjs.com/package/@vercel/ncc/v/0.36.0) (from `^0.34.0`, |
| 35 | + in `dependencies`) |
| 36 | + |
| 37 | +- [#154](https://github.com/kamilkisiela/bob/pull/154) |
| 38 | + [`616e125`](https://github.com/kamilkisiela/bob/commit/616e1254ba3b3db638a2030abd244a50ff6ddb2b) |
| 39 | + Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates: |
| 40 | + |
| 41 | + - Updated dependency |
| 42 | + [`@rollup/plugin-json@^6.0.0` ↗︎](https://www.npmjs.com/package/@rollup/plugin-json/v/6.0.0) |
| 43 | + (from `^4.1.0`, in `dependencies`) |
| 44 | + |
| 45 | +- [#167](https://github.com/kamilkisiela/bob/pull/167) |
| 46 | + [`d095697`](https://github.com/kamilkisiela/bob/commit/d0956978c70419c9f5203b3d8f85028589a51e66) |
| 47 | + Thanks [@B2o5T](https://github.com/B2o5T)! - dependencies updates: |
| 48 | + - Updated dependency [`execa@6.1.0` ↗︎](https://www.npmjs.com/package/execa/v/6.1.0) (from |
| 49 | + `5.1.1`, in `dependencies`) |
| 50 | + - Updated dependency [`globby@^13.1.3` ↗︎](https://www.npmjs.com/package/globby/v/13.1.3) (from |
| 51 | + `^11.0.0`, in `dependencies`) |
| 52 | + - Updated dependency [`p-limit@^4.0.0` ↗︎](https://www.npmjs.com/package/p-limit/v/4.0.0) (from |
| 53 | + `^3.1.0`, in `dependencies`) |
| 54 | + - Updated dependency [`yargs@^17.6.2` ↗︎](https://www.npmjs.com/package/yargs/v/17.6.2) (from |
| 55 | + `^17.5.1`, in `dependencies`) |
| 56 | + - Updated dependency [`zod@^3.20.2` ↗︎](https://www.npmjs.com/package/zod/v/3.20.2) (from |
| 57 | + `^3.17.3`, in `dependencies`) |
| 58 | + |
3 | 59 | ## 4.1.1
|
4 | 60 |
|
5 | 61 | ### Patch Changes
|
|
130 | 186 | | false
|
131 | 187 | | {
|
132 | 188 | /** Files to copy from the package root to dist */
|
133 |
| - copy?: Array<string> |
134 |
| - } |
| 189 | + copy?: Array<string>; |
| 190 | + }; |
135 | 191 | /** Whether the package should be checked. */
|
136 | 192 | check?:
|
137 | 193 | | false
|
138 | 194 | | {
|
139 | 195 | /** Exports within the package that should not be checked. */
|
140 |
| - skip?: Array<string> |
141 |
| - } |
142 |
| - } |
| 196 | + skip?: Array<string>; |
| 197 | + }; |
| 198 | + }; |
143 | 199 | ```
|
144 | 200 |
|
145 | 201 | ## 2.0.0
|
|
0 commit comments