mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-08 19:21:33 -07:00
18 lines
617 B
JavaScript
18 lines
617 B
JavaScript
const { join } = require("node:path");
|
|
const fs = require("node:fs");
|
|
const exec = require("execa");
|
|
|
|
(async () => {
|
|
const file = join(__dirname, "../package.json");
|
|
const json = require(file);
|
|
|
|
const match = json['version'].match(/^[\d.]*(?:-pre\d+|)?/);
|
|
const version = match ? `${match[0]}-dev` : "dev";
|
|
const revision = process.argv.length > 2
|
|
? process.argv[2]
|
|
: (await exec("git", ["rev-parse", "--short", "HEAD"])).stdout;
|
|
|
|
json['version'] = `${version}-${revision}`;
|
|
console.log(`Package version was updated to ${json['version']}`);
|
|
fs.writeFileSync(file, JSON.stringify(json, null, '\t'));
|
|
})();
|