version.js 603 B

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