From b4b52a77339b662c8a73add7641180c52cafed43 Mon Sep 17 00:00:00 2001 From: Neal Beeken Date: Tue, 4 Jun 2024 16:04:59 -0400 Subject: [PATCH] fix: indented confirm --- etc/docs/build.ts | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/etc/docs/build.ts b/etc/docs/build.ts index b1c78613d3..b0018499cc 100755 --- a/etc/docs/build.ts +++ b/etc/docs/build.ts @@ -10,11 +10,11 @@ import { confirm, customSemverCompare, getCommandLineArguments, - JsonVersionSchema, + type JsonVersionSchema, LATEST_TAG, log, - TomlVersionSchema, - VersionSchema + type TomlVersionSchema, + type VersionSchema } from './utils'; const exec = promisify(execCb); @@ -94,8 +94,7 @@ async function main() { if (!skipPrompts) { await confirm(` - Generating docs for the following configuration. - ${JSON.stringify(newVersion, null, 2)} + Generating docs for the following configuration.\n${JSON.stringify(newVersion, null, 2)} Does this look right? [y/n] `); }