26 lines
971 B
JavaScript
26 lines
971 B
JavaScript
import { execFileSync, execSync } from "node:child_process";
|
|
import { readFileSync, writeFileSync } from "node:fs";
|
|
import { resolve } from "node:path";
|
|
|
|
const __dirname = import.meta.dirname;
|
|
const root = resolve(__dirname, "..");
|
|
|
|
const pkgPath = new URL("../package.json", import.meta.url);
|
|
const pkg = JSON.parse(readFileSync(pkgPath, "utf8"));
|
|
|
|
const shortSha = execFileSync("git", ["rev-parse", "--short", "HEAD"], {
|
|
encoding: "utf8",
|
|
}).trim();
|
|
const devVersion = `${pkg.version}-dev.${shortSha}`;
|
|
|
|
pkg.version = devVersion;
|
|
writeFileSync(pkgPath, JSON.stringify(pkg, null, 2) + "\n");
|
|
console.log(`Stamped version: ${devVersion}`);
|
|
|
|
// Regenerate package-lock.json to reflect the stamped dev version.
|
|
// --package-lock-only updates the lockfile in-place without touching node_modules.
|
|
execSync("npm install --package-lock-only --ignore-scripts", {
|
|
cwd: root,
|
|
stdio: "inherit",
|
|
});
|
|
console.log(`[version-stamp] package-lock.json regenerated at ${devVersion}`);
|