Skip to content

Commit a35d7ce

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

File tree

4 files changed

+32
-35
lines changed

4 files changed

+32
-35
lines changed

.changeset/five-lamps-provide.md

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

.changeset/ten-panthers-play.md

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

CHANGELOG.md

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

3+
## 3.0.0
4+
5+
### Major Changes
6+
7+
- 0f3f9ac: Remove the `flat-pack`, `validate` and `run` commands that are no longer maintained and used.
8+
- 1605028: Remove the global config. Please add `bob: false` to the individual `package.json` workspaces that should not be processed by bob.
9+
10+
This is the new config format for bob.
11+
12+
```ts
13+
type BobConfig =
14+
/** completely disable bob for this package. */
15+
| false
16+
| {
17+
/** Whether the package should be built. */
18+
build?:
19+
| false
20+
| {
21+
/** Files to copy from the package root to dist */
22+
copy?: Array<string>;
23+
};
24+
/** Whether the package should be checked. */
25+
check?:
26+
| false
27+
| {
28+
/** Exports within the package that should not be checked. */
29+
skip?: Array<string>;
30+
};
31+
};
32+
```
33+
334
## 2.0.0
435

536
### Major 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": "2.0.0",
3+
"version": "3.0.0",
44
"description": "Bob The Bundler!",
55
"author": {
66
"email": "kamil.kisiela@gmail.com",

0 commit comments

Comments
 (0)