forked from graphql/graphql-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgen-version.js
37 lines (29 loc) · 908 Bytes
/
gen-version.js
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
35
36
37
'use strict';
const fs = require('fs');
const { version } = require('../package.json');
const versionMatch = /^(\d+)\.(\d+)\.(\d+)-?(.*)?$/.exec(version);
if (!versionMatch) {
throw new Error('Version does not match semver spec: ' + version);
}
const [, major, minor, patch, preReleaseTag] = versionMatch;
const body = `/**
* 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
*/
export const version = '${version}';
/**
* An object containing the components of the GraphQL.js version string
*/
export const versionInfo = Object.freeze({
major: ${major},
minor: ${minor},
patch: ${patch},
preReleaseTag: ${preReleaseTag ? `'${preReleaseTag}'` : 'null'},
});
`;
if (require.main === module) {
fs.writeFileSync('./src/version.js', body);
}