minify-html/version

98 lines
3.2 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env node
"use strict";
2020-01-03 01:45:28 -05:00
const {readFileSync, writeFileSync} = require('fs');
const {spawnSync} = require('child_process');
2020-01-20 08:50:06 -05:00
const currentVersion = /^version = "(\d+)\.(\d+)\.(\d+)"\s*$/m.exec(readFileSync('Cargo.toml', 'utf8')).slice(1).map(n => Number.parseInt(n, 10));
const assertBetween = (n, min, max) => {
if (n < min || n > max) {
throw new Error(`Invalid argument`);
}
return n;
};
const newVersion = currentVersion.slice();
newVersion[assertBetween(['major', 'minor', 'patch'].indexOf(process.argv[2].toLowerCase()), 0, 2)]++;
console.log(`${currentVersion.join('.')} => ${newVersion.join('.')}`);
const NEW_VERSION = newVersion.join('.');
2020-01-03 01:45:28 -05:00
const cmd = (...cfg) => {
const command = cfg[0];
const args = cfg.slice(1);
const {
workingDir,
throwOnBadStatus = true,
throwOnSignal = true,
captureStdio = false,
throwOnStdErr = false,
} = typeof args[args.length - 1] == "object" ? args.pop() : {};
const throwErr = msg => {
throw new Error(`${msg}\n ${command} ${args.join(' ')}`);
};
const {status, signal, error, stdout, stderr} = spawnSync(command, args.map(String), {
cwd: workingDir,
stdio: ['ignore', captureStdio ? 'pipe' : 'inherit', captureStdio || throwOnStdErr ? 'pipe' : 'inherit'],
encoding: 'utf8',
});
2020-01-01 05:01:55 -05:00
if (error) {
2020-01-03 01:45:28 -05:00
throwErr(error.message);
}
if (throwOnSignal && signal) {
throwErr(`Command exited with signal ${signal}`);
2020-01-01 05:01:55 -05:00
}
2020-01-03 01:45:28 -05:00
if (throwOnBadStatus && status !== 0) {
throwErr(`Command exited with status ${status}`);
2020-01-01 05:01:55 -05:00
}
2020-01-03 01:45:28 -05:00
if (throwOnStdErr && stderr) {
throwErr(`stderr: ${stderr}`);
}
return {status, signal, stdout, stderr};
2020-01-01 05:01:55 -05:00
};
const replaceInFile = (path, pattern, replacement) => writeFileSync(path, readFileSync(path, "utf8").replace(pattern, replacement));
2020-01-03 01:48:02 -05:00
if (cmd('git', 'status', '--porcelain', {throwOnStderr: true, captureStdio: true}).stdout) {
2020-01-03 01:45:28 -05:00
throw new Error(`Working directory not clean`);
}
2020-01-19 03:19:33 -05:00
for (const f of ["Cargo.toml", "nodejs/native/Cargo.toml", "java/Cargo.toml", "python/Cargo.toml", "ruby/Cargo.toml"]) {
2020-01-01 05:01:55 -05:00
replaceInFile(f, /^version = "\d+\.\d+\.\d+"\s*$/m, `version = "${NEW_VERSION}"`);
}
for (const f of ["python/setup.py"]) {
replaceInFile(f, /^(\s*version=)"\d+\.\d+\.\d+",\s*$/m, `$1"${NEW_VERSION}",`);
}
2020-01-19 03:19:33 -05:00
for (const f of ["README.md", "nodejs/native/Cargo.toml", "java/Cargo.toml", "python/Cargo.toml", "ruby/Cargo.toml"]) {
2020-01-01 05:01:55 -05:00
replaceInFile(f, /^hyperbuild = "\d+\.\d+\.\d+"\s*$/m, `hyperbuild = "${NEW_VERSION}"`);
}
for (const f of ["nodejs/package.json"]) {
replaceInFile(f, /^(\s*"version": )"\d+\.\d+\.\d+",\s*$/m, `$1"${NEW_VERSION}",`);
}
2020-01-19 03:19:33 -05:00
for (const f of ["ruby/hyperbuild.gemspec"]) {
replaceInFile(f, /^(\s*spec\.version\s*=\s*)"\d+\.\d+\.\d+"\s*$/m, `$1"${NEW_VERSION}"`);
2020-01-19 03:19:33 -05:00
}
2020-01-19 22:42:23 -05:00
for (const f of ["java/pom.xml", "README.md"]) {
replaceInFile(f, /(<artifactId>hyperbuild<\/artifactId>\s*<version>)\d+\.\d+\.\d+(<\/version>)/, `$1${NEW_VERSION}$2`);
}
for (const f of ["README.md"]) {
2020-01-01 05:01:55 -05:00
replaceInFile(f, /(wilsonl\.in\/hyperbuild\/bin\/)\d+\.\d+\.\d+/g, `$1${NEW_VERSION}`);
}
2020-01-01 05:01:55 -05:00
cmd('cargo', 'generate-lockfile');
2020-01-03 01:45:28 -05:00
cmd('git', 'add', '-A');
cmd('git', 'commit', '-m', NEW_VERSION);
cmd('git', 'tag', '-a', `v${NEW_VERSION}`, '-m', '');
cmd('cargo', 'publish');
2020-01-15 07:05:13 -05:00
cmd('git', 'push', '--follow-tags');