From 980c845fa91c958e6b9ca11ae655bb3e1ad239fc Mon Sep 17 00:00:00 2001 From: Ben McCann <322311+benmccann@users.noreply.github.com> Date: Thu, 29 Jul 2021 00:48:59 -0700 Subject: [PATCH] quotes --- cli/run/batchWarnings.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/run/batchWarnings.ts b/cli/run/batchWarnings.ts index 28d5e2dd210..1af0e496168 100644 --- a/cli/run/batchWarnings.ts +++ b/cli/run/batchWarnings.ts @@ -239,9 +239,9 @@ const deferredHandlers: { for (const warning of warnings) { stderr( warning.names + - ' imported from external module ' + + " imported from external module '" + warning.source + - ' but never used in ' + + "' but never used in " + printQuotedStringList((warning.sources as string[]).map(id => relativeId(id))) ); }