-
Notifications
You must be signed in to change notification settings - Fork 160
/
Copy pathcache-inputs.js
executable file
·36 lines (28 loc) · 1.19 KB
/
cache-inputs.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
#!/usr/bin/env node
/**
* The output from this script is used by Nx to determine whether the cache should be invalidated
* or not at the workspace level. This file is referenced from the nx.json file.
*/
process.removeAllListeners('warning');
import {dirname, join} from 'pathe'
import {createRequire} from 'module'
import {fileURLToPath} from 'url'
import crypto from "crypto"
import {execa} from 'execa'
const require = createRequire(import.meta.url)
const {readFile} = require('fs-extra')
// Paths
const binDirectory = dirname(fileURLToPath(import.meta.url))
const rootDirectory = dirname(binDirectory)
// Hashable inputs
const nodeVersion = process.version;
const {stdout: typescriptCompilerVersion} = await execa(join(rootDirectory, "node_modules/.bin/tsc"), ['--version'], {cwd: rootDirectory});
const {stdout: gitSha} = await execa("git", ['rev-parse', '--short', 'HEAD'], {cwd: rootDirectory});
const pnpmLockfileContent = (await readFile(join(rootDirectory, "pnpm-lock.yaml"))).toString();
const hashableInputs = [
nodeVersion.trim(),
typescriptCompilerVersion.trim(),
gitSha.trim(),
crypto.createHash('md5').update(pnpmLockfileContent).digest("hex")
]
console.log(hashableInputs.join("\n"))