summaryrefslogtreecommitdiffstats
path: root/extra/mark-as-nightly.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2024-11-26 09:28:28 +0100
committerDaniel Baumann <daniel@debian.org>2024-11-26 12:25:58 +0100
commita1882b67c41fe9901a0cd8059b5cc78a5beadec0 (patch)
tree2a24507c67aa99a15416707b2f7e645142230ed8 /extra/mark-as-nightly.js
parentInitial commit. (diff)
downloaduptime-kuma-a1882b67c41fe9901a0cd8059b5cc78a5beadec0.tar.xz
uptime-kuma-a1882b67c41fe9901a0cd8059b5cc78a5beadec0.zip
Adding upstream version 2.0.0~beta.0+dfsg.upstream/2.0.0_beta.0+dfsgupstream
Signed-off-by: Daniel Baumann <daniel@debian.org>
Diffstat (limited to 'extra/mark-as-nightly.js')
-rw-r--r--extra/mark-as-nightly.js24
1 files changed, 24 insertions, 0 deletions
diff --git a/extra/mark-as-nightly.js b/extra/mark-as-nightly.js
new file mode 100644
index 0000000..d2cb8cb
--- /dev/null
+++ b/extra/mark-as-nightly.js
@@ -0,0 +1,24 @@
+const pkg = require("../package.json");
+const fs = require("fs");
+const util = require("../src/util");
+const dayjs = require("dayjs");
+
+util.polyfill();
+
+const oldVersion = pkg.version;
+const newVersion = oldVersion + "-nightly-" + dayjs().format("YYYYMMDDHHmmss");
+
+console.log("Old Version: " + oldVersion);
+console.log("New Version: " + newVersion);
+
+if (newVersion) {
+ // Process package.json
+ pkg.version = newVersion;
+ pkg.scripts.setup = pkg.scripts.setup.replaceAll(oldVersion, newVersion);
+ fs.writeFileSync("package.json", JSON.stringify(pkg, null, 4) + "\n");
+
+ // Process README.md
+ if (fs.existsSync("README.md")) {
+ fs.writeFileSync("README.md", fs.readFileSync("README.md", "utf8").replaceAll(oldVersion, newVersion));
+ }
+}