version.js 599 B

12345678910111213141516171819202122232425
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', {
  3. value: true,
  4. });
  5. exports.versionInfo = exports.version = void 0;
  6. // Note: This file is autogenerated using "resources/gen-version.js" script and
  7. // automatically updated by "npm version" command.
  8. /**
  9. * A string containing the version of the GraphQL.js library
  10. */
  11. const version = '16.8.1';
  12. /**
  13. * An object containing the components of the GraphQL.js version string
  14. */
  15. exports.version = version;
  16. const versionInfo = Object.freeze({
  17. major: 16,
  18. minor: 8,
  19. patch: 1,
  20. preReleaseTag: null,
  21. });
  22. exports.versionInfo = versionInfo;