Tone.js/scripts/increment_version.cjs

40 lines
1.3 KiB
JavaScript
Raw Permalink Normal View History

2019-11-16 22:45:22 +00:00
/* eslint-disable no-console */
/* eslint-disable @typescript-eslint/no-var-requires */
const fs = require("fs");
const semver = require("semver");
const { resolve } = require("path");
2019-11-16 22:45:22 +00:00
const { execSync } = require("child_process");
const tsVersion = execSync("npm show tone@next version").toString();
const mainVersion = execSync("npm show tone version").toString();
2019-11-16 22:45:22 +00:00
// go with whichever is the latest version
let version = mainVersion;
if (tsVersion && semver.gt(tsVersion, mainVersion)) {
version = tsVersion;
}
2019-11-16 22:45:22 +00:00
// increment the patch
version = semver.inc(version, "patch");
2019-11-16 22:45:22 +00:00
// write it to the package.json
const packageFile = resolve(__dirname, "../package.json");
const packageObj = JSON.parse(fs.readFileSync(packageFile, "utf-8"));
2019-11-16 22:45:22 +00:00
// if the package version if the latest, go with that one
if (semver.gt(packageObj.version, version)) {
version = packageObj.version;
}
console.log(`incrementing to version ${version}`);
packageObj.version = version;
2019-11-16 22:45:22 +00:00
// only if it's travis, update the package.json
if (process.env.GITHUB_CI) {
fs.writeFileSync(packageFile, JSON.stringify(packageObj, undefined, " "));
2019-08-02 14:34:09 +00:00
2019-11-16 22:45:22 +00:00
// write a version file
const versionFile = `export const version: string = ${JSON.stringify(version)};\n`;
2019-08-02 14:34:09 +00:00
fs.writeFileSync(resolve(__dirname, "../Tone/version.ts"), versionFile);
}