fix(dx): remove extra quote in emitDeclarationOnly log statement (#412)

- must've been a copy+paste mistake or something
This commit is contained in:
Anton Gilgur 2022-08-25 00:53:55 -04:00 committed by GitHub
parent 83835009f4
commit 88863838a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -253,7 +253,7 @@ const typescript: PluginImpl<RPT2Options> = (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;
}