forked from Roblox/graphql-lua
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathversion.lua
More file actions
34 lines (30 loc) · 839 Bytes
/
version.lua
File metadata and controls
34 lines (30 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
--[[
* Copyright (c) GraphQL Contributors
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
]]
-- upstream: https://github.com/graphql/graphql-js/blob/00d4efea7f5b44088356798afff0317880605f4d/src/version.js
--!strict
local Object = require("@pkg/@jsdotlua/luau-polyfill").Object
--[[
* Note: This file is autogenerated using "resources/gen-version.js" script and
* automatically updated by "npm version" command.
*]]
--[[
* A string containing the version of the GraphQL.js library
*]]
local version = "15.62.2"
--[[
* An object containing the components of the GraphQL.js version string
*]]
local versionInfo = Object.freeze({
major = 15,
minor = 6,
patch = 1,
preReleaseTag = "",
})
return {
version = version,
versionInfo = versionInfo,
}