mirror of
https://github.com/IvarK/AntimatterDimensionsSourceCode.git
synced 2024-11-10 06:02:13 +00:00
56 lines
1.6 KiB
JavaScript
56 lines
1.6 KiB
JavaScript
/* eslint-disable no-console */
|
|
|
|
const fs = require("fs");
|
|
const path = require("path");
|
|
const proc = require("child_process");
|
|
const readline = require("readline");
|
|
|
|
|
|
function getHash(string) {
|
|
let hash = 0;
|
|
for (let i = 0; i < string.length; i++) {
|
|
const char = string.charCodeAt(i);
|
|
hash = ((hash << 5) - hash) + char;
|
|
// Convert to 32bit integer
|
|
hash &= hash;
|
|
}
|
|
return hash.toString();
|
|
}
|
|
|
|
const hashPath = path.resolve(__dirname, "../.tmp/package-lock.json.hash");
|
|
let currentHash = undefined;
|
|
if (fs.existsSync(hashPath)) {
|
|
currentHash = fs.readFileSync(hashPath, { encoding: "utf-8" });
|
|
}
|
|
|
|
const packageLockPath = path.resolve(__dirname, "../package-lock.json");
|
|
const packageLockContents = fs.readFileSync(packageLockPath, { encoding: "utf-8" });
|
|
const newHash = getHash(packageLockContents);
|
|
|
|
if (newHash !== currentHash) {
|
|
const tmpPath = path.resolve(__dirname, "../.tmp");
|
|
if (!fs.existsSync(tmpPath)) {
|
|
fs.mkdirSync(tmpPath);
|
|
}
|
|
|
|
const rl = readline.createInterface({
|
|
input: process.stdin,
|
|
output: process.stdout
|
|
});
|
|
|
|
console.log("package-lock.json changes were detected");
|
|
const timeout = setTimeout(() => {
|
|
rl.close();
|
|
console.log("Running 'npm ci' (this might take a while)...");
|
|
proc.execSync("npm ci");
|
|
fs.writeFileSync(hashPath, newHash, {});
|
|
}, 5000);
|
|
|
|
// eslint-disable-next-line max-len
|
|
rl.question(`Press enter within the next five seconds to skip running 'npm ci' - this will leave your packages out of sync!`, () => {
|
|
console.log(`'npm ci' step skipped`);
|
|
rl.close();
|
|
clearTimeout(timeout);
|
|
});
|
|
}
|