v3.0.0
Major Changes
-
0f3f9ac: Remove the
flat-pack
,validate
andrun
commands that are no longer maintained and used. -
1605028: Remove the global config. Please add
bob: false
to the individualpackage.json
workspaces that should not be processed by bob.This is the new config format for bob.
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>; }; };