Browse Source
* build: Add script to update package.json and commit for next release * fixpull/3811/head
3 changed files with 61 additions and 18 deletions
@ -0,0 +1,39 @@
@@ -0,0 +1,39 @@
|
||||
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); |
||||
Loading…
Reference in new issue