Skip to content

Releases: kamilkisiela/bob

v7.0.1

01 Jun 11:57
c700ab7
Compare
Choose a tag to compare

Patch Changes

v7.0.0

17 May 08:03
6c23d24
Compare
Choose a tag to compare

Major Changes

Patch Changes

v6.0.0

16 Mar 10:34
14ef23e
Compare
Choose a tag to compare

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

01 Feb 21:04
32c2ecf
Compare
Choose a tag to compare

Patch Changes

v5.0.0

09 Jan 12:22
521c7cb
Compare
Choose a tag to compare

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

19 Dec 16:06
e43495e
Compare
Choose a tag to compare

Patch Changes

v4.1.0

08 Dec 09:38
8eb5e9f
Compare
Choose a tag to compare

Minor Changes

  • #123 b68da59 Thanks @enisdenjo! - better performance by incrementally building only packages that had changes

Patch Changes

v4.0.0

05 Aug 09:34
11b8532
Compare
Choose a tag to compare

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

27 Jul 07:23
fa80a54
Compare
Choose a tag to compare

Patch Changes

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

v3.0.4

19 Jul 09:32
1f21072
Compare
Choose a tag to compare

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.