Skip to content

v3.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 04 Jul 16:53
· 288 commits to master since this release
a35d7ce

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.

    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>;
              };
        };