name-suggestion-index/scripts/dist_version.js
Bryan Housel 1c4fc70e3b WIP Modernize
- switch to type: module
- replace all CJS require/module.exports with ES6 import/expor
2021-06-22 00:04:52 -04:00

19 lines
702 B
JavaScript

import colors from 'colors/safe.js';
import fs from 'node:fs';
const packageJSON = JSON.parse(fs.readFileSync('./package.json', 'utf8'));
// YYYYMMDD
const now = new Date();
const yyyy = now.getUTCFullYear();
const mm = ('0' + (now.getUTCMonth() + 1)).slice(-2);
const dd = ('0' + now.getUTCDate()).slice(-2);
const oldVersion = packageJSON.version;
const newVersion = oldVersion.replace(/(\d){8}/, `${yyyy}${mm}${dd}`);
if (newVersion !== oldVersion) {
console.log('🎉 ' + colors.green('Bumping package version to ') + colors.green.bold(newVersion));
const output = Object.assign(packageJSON, { version: newVersion });
fs.writeFileSync('package.json', JSON.stringify(output, null, 2));
}