Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency bob-the-bundler to v7 #2313

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 9, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
bob-the-bundler 1.7.3 -> 7.0.1 age adoption passing confidence

Release Notes

kamilkisiela/bob (bob-the-bundler)

v7.0.1

Compare Source

Patch Changes

v7.0.0

Compare Source

Major Changes
Patch Changes

v6.0.0

Compare Source

Major Changes
  • #​202
    2236863
    Thanks @​enisdenjo! - Custom tsconfig path for the build command,
    default to tsconfig.build.json and fallback to tsconfig.json.

  • #​203
    3b7efdc
    Thanks @​ardatan! - Breaking jest-resolver.js renamed to
    jest-resolver.cjs because Bob package is an ESM package.

    Please make sure to adjust your jest.config.js.

    - resolver: 'bob-the-bundler/jest-resolver.js'
    + resolver: 'bob-the-bundler/jest-resolver.cjs'
Patch Changes

v5.0.1

Compare Source

Patch Changes

v5.0.0

Compare Source

Major Changes
Minor Changes
  • #​160
    9ce6e27
    Thanks @​B2o5T! - Support pnpm workspaces from pnpm-workspace.yaml..
    Throw an error in case both pnpm-workspace.yaml and package.json#workspaces fields exist. Add
    missing dependency execa. Cleanup and remove unused dependencies.
Patch Changes

v4.1.1

Compare Source

Patch Changes

v4.1.0

Compare Source

Minor Changes
Patch Changes

v4.0.0

Compare Source

Major Changes
  • f685733: Change the exports map again, to please TypeScript commonjs :)

    This is a major breaking change as it requires adjusting your package.json exports map.

    The require entries file extension must be changed from .d.ts to .d.cts.

      {
        "exports": {
          ".": {
            "require": {
    -          "types": "./dist/typings/index.d.ts",
    +          "types": "./dist/typings/index.d.cts"
            }
          }
        }
      }
Minor Changes
  • 14fa965: Disable commonjs output via package.json

    {
      "name": "my-package",
      "bob": {
        "commonjs": false
      }
    }
  • b8db426: Ignore __tests__ and __testUtils__ from bundling

v3.0.5

Compare Source

Patch Changes
  • 16952de: Use correct path for checking file existence in exports map.

v3.0.4

Compare Source

Patch Changes
  • e096322: Replace babel based export/import source location transform with an improved regex based
    transform that reduces code change noise and preserves the original formatting.

v3.0.3

Compare Source

Patch Changes
  • 0c36290: Support type imports/exports.

v3.0.2

Compare Source

Patch Changes
  • b6976a9: Use a more reliable import/export transform for the bootstrap command

v3.0.1

Compare Source

Patch Changes
  • 086c1a8: Run typescript tsc commands in sequence instead of in parallel to avoid race conditions
    where the .bob/cjs or .bob/esm folder is missing.

v3.0.0

Compare Source

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

v2.0.0

Compare Source

Major Changes
Minor Changes
  • 0942e1c: unpin and update dependencies
  • 59ead17: remove the --single flag. The value is now derived from the package.json workspaces
    property. If your workspace is configured properly this is not a breaking change.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Feb 9, 2023
@changeset-bot
Copy link

changeset-bot bot commented Feb 9, 2023

⚠️ No Changeset found

Latest commit: 7e5ecd0

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate renovate bot changed the title chore(deps): update dependency bob-the-bundler to v5 chore(deps): update dependency bob-the-bundler to v6 Mar 16, 2023
@renovate renovate bot force-pushed the renovate/major-bob-the-bundler branch from 56af848 to 8090057 Compare March 16, 2023 20:00
@renovate renovate bot force-pushed the renovate/major-bob-the-bundler branch from 8090057 to adc16ba Compare May 17, 2023 11:10
@renovate renovate bot changed the title chore(deps): update dependency bob-the-bundler to v6 chore(deps): update dependency bob-the-bundler to v7 May 17, 2023
@renovate renovate bot force-pushed the renovate/major-bob-the-bundler branch 6 times, most recently from c78351f to 1c33ca3 Compare May 24, 2023 00:02
@renovate renovate bot force-pushed the renovate/major-bob-the-bundler branch 6 times, most recently from 0d9dd68 to c5fe469 Compare June 5, 2023 03:23
@renovate renovate bot force-pushed the renovate/major-bob-the-bundler branch 2 times, most recently from 548ea25 to 46106a2 Compare June 26, 2023 03:39
@renovate renovate bot force-pushed the renovate/major-bob-the-bundler branch from 46106a2 to 9bdda1b Compare June 27, 2023 12:37
@renovate renovate bot force-pushed the renovate/major-bob-the-bundler branch from 9bdda1b to 0d30081 Compare July 10, 2023 00:44
@renovate renovate bot force-pushed the renovate/major-bob-the-bundler branch 4 times, most recently from c87746b to b6f89f2 Compare July 24, 2023 04:06
@renovate renovate bot force-pushed the renovate/major-bob-the-bundler branch from b6f89f2 to af8490e Compare July 31, 2023 04:38
@renovate renovate bot force-pushed the renovate/major-bob-the-bundler branch 3 times, most recently from 2605e35 to 17f4ce6 Compare August 25, 2023 00:54
@renovate renovate bot force-pushed the renovate/major-bob-the-bundler branch from 17f4ce6 to 9684247 Compare August 25, 2023 04:42
@renovate renovate bot force-pushed the renovate/major-bob-the-bundler branch 4 times, most recently from 266a1c2 to 631b4f1 Compare September 12, 2023 13:41
@renovate renovate bot force-pushed the renovate/major-bob-the-bundler branch 2 times, most recently from b021a07 to eef0edb Compare September 24, 2023 07:54
@renovate renovate bot force-pushed the renovate/major-bob-the-bundler branch from eef0edb to 9089e72 Compare October 10, 2023 20:47
@renovate renovate bot force-pushed the renovate/major-bob-the-bundler branch from 9089e72 to cb4a355 Compare October 26, 2023 09:08
@renovate renovate bot force-pushed the renovate/major-bob-the-bundler branch 4 times, most recently from e83bd41 to 4eefe20 Compare December 6, 2023 14:40
@renovate renovate bot force-pushed the renovate/major-bob-the-bundler branch 3 times, most recently from f0ec2e0 to ca6acdc Compare March 24, 2024 06:34
@renovate renovate bot force-pushed the renovate/major-bob-the-bundler branch from ca6acdc to 7e5ecd0 Compare April 11, 2024 15:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants