chore: fix prettier

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2024-01-23 10:33:42 +01:00
committed by Brian Hudson
parent e1c479dc31
commit 1bb3ff229c
2 changed files with 2 additions and 3 deletions
@@ -146,4 +146,3 @@ export function getMajorNodeVersion(): number {
const version = process.versions.node;
return parseInt(version.split('.')[0], 10);
}
@@ -66,7 +66,7 @@ import {
getEntityBaseUrl,
getMajorNodeVersion,
getWorkingDirectory,
isNoNodeSnapshotOptionProvided
isNoNodeSnapshotOptionProvided,
} from './helpers';
import {
IdentityApi,
@@ -268,7 +268,7 @@ export async function createRouter(
if (nodeVersion >= 20 && !isNoNodeSnapshotOptionProvided()) {
throw new Error(
'When using node v20+ Scaffolder requires that node be started with the --no-node-snapshot option. Please restart ' +
'Backstage providing the node --no-node-snapshot option.',
'Backstage providing the node --no-node-snapshot option.',
);
}