Releases: graphql-hive/bob
Releases · graphql-hive/bob
v3.0.3
v3.0.2
v3.0.1
v3.0.0
Major Changes
-
0f3f9ac: Remove the
flat-pack,validateandruncommands that are no longer maintained and used. -
1605028: Remove the global config. Please add
bob: falseto the individualpackage.jsonworkspaces 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
Major Changes
- ae0b4b2: Require specifying typescript fields in the package.json exports map for typescript modules support.
Learn more on the TypeScript 4.7 release notes.
Minor Changes
v1.4.1
fix typo .msj (should be .mjs)
v1.4.0
Support multiple dist configurations and ESM #13
v1.3.0
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
- fixes resolution of direct and peer dependencies in rollup
v1.1.0
- Improves copy command (adds glob)