1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-19 20:31:46 +02:00

Generator: Print version number after calling updateVersion script

This commit is contained in:
Laurent Cozic 2024-11-18 17:44:11 +00:00
parent 30a8a38019
commit f8b80386f3

View File

@ -338,6 +338,8 @@ const updateVersion = () => {
if (packageJson.version !== manifest.version) {
console.warn(chalk.yellow(`Version numbers have been updated but they do not match: package.json (${packageJson.version}), manifest.json (${manifest.version}). Set them to the required values to get them in sync.`));
} else {
console.info(packageJson.version);
}
};