Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/five-lamps-provide.md

This file was deleted.

29 changes: 0 additions & 29 deletions .changeset/ten-panthers-play.md

This file was deleted.

31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,36 @@
# Changelog

## 3.0.0

### Major Changes

- 0f3f9ac: Remove the `flat-pack`, `validate` and `run` commands that are no longer maintained and used.
- 1605028: Remove the global config. Please add `bob: false` to the individual `package.json` workspaces that should not be processed by bob.

This is the new config format for bob.

```ts
type BobConfig =
/** completely disable bob for this package. */
| false
| {
/** Whether the package should be built. */
build?:
| false
| {
/** Files to copy from the package root to dist */
copy?: Array<string>;
};
/** Whether the package should be checked. */
check?:
| false
| {
/** Exports within the package that should not be checked. */
skip?: Array<string>;
};
};
```

## 2.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bob-the-bundler",
"version": "2.0.0",
"version": "3.0.0",
"description": "Bob The Bundler!",
"author": {
"email": "[email protected]",
Expand Down