summaryrefslogtreecommitdiffstats
path: root/dom/webgpu/tests/cts/checkout/tools/gen_version
blob: 2c17db14544bdf18021e29e2c93e09c7b04a4e88 (plain)
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
#!/usr/bin/env node

// Get the current git hash, and save (overwrite) it into gen/.../version.js
// so it can be read when running inside the browser.

/* eslint-disable no-console */

require('../src/common/tools/setup-ts-in-node.js');
const fs = require('fs');

const myself = 'tools/gen_version';
if (!fs.existsSync(myself)) {
  console.error('Must be run from repository root');
  process.exit(1);
}

const { version } = require('../src/common/tools/version.ts');

fs.mkdirSync('./gen/common/internal', { recursive: true });
// This will be copied into the various other build directories.
fs.writeFileSync(
  './gen/common/internal/version.js',
  `\
// AUTO-GENERATED - DO NOT EDIT. See ${myself}.

export const version = '${version}';
`
);