-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a script to bump the version (#1694)
Also, add the version in font CSS and SCSS files
- Loading branch information
Showing
4 changed files
with
105 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
#!/usr/bin/env node | ||
|
||
/*! | ||
* Script to update version number references in the project. | ||
* Copyright 2023 The Bootstrap Authors | ||
* Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE) | ||
*/ | ||
|
||
'use strict' | ||
|
||
const { execFile } = require('node:child_process') | ||
const fs = require('node:fs').promises | ||
|
||
const VERBOSE = process.argv.includes('--verbose') | ||
const DRY_RUN = process.argv.includes('--dry') || process.argv.includes('--dry-run') | ||
|
||
// These are the files we only care about replacing the version | ||
const FILES = [ | ||
'build/font/css.hbs', | ||
'build/font/scss.hbs', | ||
'config.yml' | ||
] | ||
|
||
// Blame TC39... https://github.com/benjamingr/RegExp.escape/issues/37 | ||
function regExpQuote(string) { | ||
return string.replace(/[$()*+-.?[\\\]^{|}]/g, '\\$&') | ||
} | ||
|
||
function regExpQuoteReplacement(string) { | ||
return string.replace(/\$/g, '$$') | ||
} | ||
|
||
async function replaceRecursively(file, oldVersion, newVersion) { | ||
const originalString = await fs.readFile(file, 'utf8') | ||
const newString = originalString.replace( | ||
new RegExp(regExpQuote(oldVersion), 'g'), | ||
regExpQuoteReplacement(newVersion) | ||
) | ||
|
||
// No need to move any further if the strings are identical | ||
if (originalString === newString) { | ||
return | ||
} | ||
|
||
if (VERBOSE) { | ||
console.log(`Found ${oldVersion} in ${file}`) | ||
} | ||
|
||
if (DRY_RUN) { | ||
return | ||
} | ||
|
||
await fs.writeFile(file, newString, 'utf8') | ||
} | ||
|
||
function bumpNpmVersion(newVersion) { | ||
if (DRY_RUN) { | ||
return | ||
} | ||
|
||
execFile('npm', ['version', newVersion, '--no-git-tag'], { shell: true }, (error) => { | ||
if (error) { | ||
console.error(error) | ||
process.exit(1) | ||
} | ||
}) | ||
} | ||
|
||
function showUsage(args) { | ||
console.error('USAGE: change-version old_version new_version [--verbose] [--dry[-run]]') | ||
console.error('Got arguments:', args) | ||
process.exit(1) | ||
} | ||
|
||
async function main(args) { | ||
let [oldVersion, newVersion] = args | ||
|
||
if (!oldVersion || !newVersion) { | ||
showUsage(args) | ||
} | ||
|
||
// Strip any leading `v` from arguments because | ||
// otherwise we will end up with duplicate `v`s | ||
[oldVersion, newVersion] = [oldVersion, newVersion].map(arg => { | ||
return arg.startsWith('v') ? arg.slice(1) : arg | ||
}) | ||
|
||
if (oldVersion === newVersion) { | ||
showUsage(args) | ||
} | ||
|
||
bumpNpmVersion(newVersion) | ||
|
||
try { | ||
await Promise.all(FILES.map(file => replaceRecursively(file, oldVersion, newVersion))) | ||
} catch (error) { | ||
console.error(error) | ||
process.exit(1) | ||
} | ||
} | ||
|
||
main(process.argv.slice(2)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters