version.js.flow 448 B

123456789101112131415161718192021
  1. // @flow strict
  2. /**
  3. * Note: This file is autogenerated using "resources/gen-version.js" script and
  4. * automatically updated by "yarn version" command.
  5. */
  6. /**
  7. * A string containing the version of the GraphQL.js library
  8. */
  9. export const version = '14.7.0';
  10. /**
  11. * An object containing the components of the GraphQL.js version string
  12. */
  13. export const versionInfo = Object.freeze({
  14. major: 14,
  15. minor: 7,
  16. patch: 0,
  17. preReleaseTag: null,
  18. });