- undoing debug code

This commit is contained in:
Eugene Zolenko 2020-02-11 16:30:44 -07:00
parent cd76b42f55
commit df241da73f
5 changed files with 5 additions and 5 deletions

View File

@ -28961,7 +28961,7 @@ const typescript = (options) => {
context.debug(() => `plugin options:\n${JSON.stringify(pluginOptions, (key, value) => key === "typescript" ? `version ${value.version}` : value, 4)}`);
context.debug(() => `rollup config:\n${JSON.stringify(rollupOptions, undefined, 4)}`);
context.debug(() => `tsconfig path: ${tsConfigPath}`);
if (!pluginOptions.objectHashIgnoreUnknownHack)
if (pluginOptions.objectHashIgnoreUnknownHack)
context.warn(() => `${safe_4("You are using 'objectHashIgnoreUnknownHack' option")}. If you enabled it because of async functions, try disabling it now.`);
if (watchMode)
context.info(`running in watch mode`);

File diff suppressed because one or more lines are too long

View File

@ -28955,7 +28955,7 @@ const typescript = (options) => {
context.debug(() => `plugin options:\n${JSON.stringify(pluginOptions, (key, value) => key === "typescript" ? `version ${value.version}` : value, 4)}`);
context.debug(() => `rollup config:\n${JSON.stringify(rollupOptions, undefined, 4)}`);
context.debug(() => `tsconfig path: ${tsConfigPath}`);
if (!pluginOptions.objectHashIgnoreUnknownHack)
if (pluginOptions.objectHashIgnoreUnknownHack)
context.warn(() => `${safe_4("You are using 'objectHashIgnoreUnknownHack' option")}. If you enabled it because of async functions, try disabling it now.`);
if (watchMode)
context.info(`running in watch mode`);

File diff suppressed because one or more lines are too long

View File

@ -98,7 +98,7 @@ const typescript: PluginImpl<Partial<IOptions>> = (options) =>
context.debug(() => `rollup config:\n${JSON.stringify(rollupOptions, undefined, 4)}`);
context.debug(() => `tsconfig path: ${tsConfigPath}`);
if (!pluginOptions.objectHashIgnoreUnknownHack)
if (pluginOptions.objectHashIgnoreUnknownHack)
context.warn(() => `${yellow("You are using 'objectHashIgnoreUnknownHack' option")}. If you enabled it because of async functions, try disabling it now.`);
if (watchMode)