We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9423f80 commit d5c7167Copy full SHA for d5c7167
scripts/sync-version.mjs
@@ -48,7 +48,9 @@ async function main() {
48
try {
49
versionFileContents = await readFile(versionFilePath, 'utf8');
50
} catch (err) {
51
- throw new Error(`Failed to read version file at ${versionFilePath}: ${err.message}`);
+ throw new Error(
52
+ `Failed to read version file at ${versionFilePath}: ${err.message}`
53
+ );
54
}
55
const match = versionFileContents.match(VERSION_EXPORT_PATTERN);
56
0 commit comments