From 88863838a02fcd4c006f7f2b36e8afd18fca2fdc Mon Sep 17 00:00:00 2001 From: Anton Gilgur Date: Thu, 25 Aug 2022 00:53:55 -0400 Subject: [PATCH] fix(dx): remove extra quote in emitDeclarationOnly log statement (#412) - must've been a copy+paste mistake or something --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index e1f0addc..14984e85 100644 --- a/src/index.ts +++ b/src/index.ts @@ -253,7 +253,7 @@ const typescript: PluginImpl = (options) => // note that result.code is non-existent if emitDeclarationOnly per https://github.com/ezolenko/rollup-plugin-typescript2/issues/268 if (parsedConfig.options.emitDeclarationOnly) { - context.debug(() => `${blue("emitDeclarationOnly")} enabled, not transforming TS'`); + context.debug(() => `${blue("emitDeclarationOnly")} enabled, not transforming TS`); return undefined; }