Skip to content

Releases: graphql-hive/bob

v3.0.3

19 Jul 08:30
02a1e11
Compare
Choose a tag to compare

Patch Changes

  • 0c36290: Support type imports/exports.

v3.0.2

19 Jul 08:17
7883b57
Compare
Choose a tag to compare

Patch Changes

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

v3.0.1

14 Jul 09:37
79212fc
Compare
Choose a tag to compare

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

04 Jul 16:53
a35d7ce
Compare
Choose a tag to compare

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

27 Jun 09:49
ec5a0f7
Compare
Choose a tag to compare

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.

v1.4.1

09 Jun 12:07
Compare
Choose a tag to compare

fix typo .msj (should be .mjs)

v1.4.0

09 Jun 10:57
Compare
Choose a tag to compare

Support multiple dist configurations and ESM #13

v1.3.0

09 Jun 10:56
Compare
Choose a tag to compare

Added runify command to produce stanalone (node_modules included) bundles and to make them executable with node index.js (supports NextJS) #19

v1.2.1

02 Jun 10:34
Compare
Choose a tag to compare
  • fixes resolution of direct and peer dependencies in rollup

v1.1.0

29 Jul 09:51
Compare
Choose a tag to compare
  • Improves copy command (adds glob)