2e61fec7a6
* build: Add script to update package.json and commit for next release * fix
40 lines
1.1 KiB
JavaScript
40 lines
1.1 KiB
JavaScript
const fs = require("fs");
|
|
const util = require("util");
|
|
const exec = util.promisify(require("child_process").exec);
|
|
const updateReadme = require("./updateReadme");
|
|
const updateChangelog = require("./updateChangelog");
|
|
|
|
const excalidrawDir = `${__dirname}/../src/packages/excalidraw`;
|
|
const excalidrawPackage = `${excalidrawDir}/package.json`;
|
|
|
|
const updatePackageVersion = (nextVersion) => {
|
|
const pkg = require(excalidrawPackage);
|
|
pkg.version = nextVersion;
|
|
const content = `${JSON.stringify(pkg, null, 2)}\n`;
|
|
fs.writeFileSync(excalidrawPackage, content, "utf-8");
|
|
};
|
|
|
|
const release = async (nextVersion) => {
|
|
try {
|
|
updateReadme();
|
|
await updateChangelog(nextVersion);
|
|
updatePackageVersion();
|
|
await exec(`git add -u`);
|
|
await exec(
|
|
`git commit -m "docs: release excalidraw@excalidraw@${nextVersion} 🎉"`,
|
|
);
|
|
/* eslint-disable no-console */
|
|
console.log("Done!");
|
|
} catch (e) {
|
|
console.error(e);
|
|
process.exit(1);
|
|
}
|
|
};
|
|
|
|
const nextVersion = process.argv.slice(2)[0];
|
|
if (!nextVersion) {
|
|
console.error("Pass the next version to release!");
|
|
process.exit(1);
|
|
}
|
|
release(nextVersion);
|