diff version-bump.mjs @ 45:712761e7625b 1.1.0

Bump version to 1.1.0
author Ludovic Chabant <ludovic@chabant.com>
date Wed, 20 Sep 2023 23:13:19 -0700
parents 2a9e941c96ee
children
line wrap: on
line diff
--- a/version-bump.mjs	Wed Sep 20 23:07:48 2023 -0700
+++ b/version-bump.mjs	Wed Sep 20 23:13:19 2023 -0700
@@ -1,6 +1,7 @@
 import { readFileSync, writeFileSync } from "fs";
 
 const targetVersion = process.env.npm_package_version;
+console.log(`Bumping version to ${targetVersion}`);
 
 // read minAppVersion from manifest.json and bump version to target version
 let manifest = JSON.parse(readFileSync("manifest.json", "utf8"));