Skip to content

Commit

Permalink
fix(dx): remove extra quote in emitDeclarationOnly log statement (#412)
Browse files Browse the repository at this point in the history
- must've been a copy+paste mistake or something
  • Loading branch information
agilgur5 committed Aug 25, 2022
1 parent 8383500 commit 8886383
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Expand Up @@ -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;
}

Expand Down

0 comments on commit 8886383

Please sign in to comment.