Skip to content

Commit df241da

Browse files
committed
- undoing debug code
1 parent cd76b42 commit df241da

5 files changed

+5
-5
lines changed

dist/rollup-plugin-typescript2.cjs.js

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

dist/rollup-plugin-typescript2.cjs.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rollup-plugin-typescript2.es.js

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

dist/rollup-plugin-typescript2.es.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ const typescript: PluginImpl<Partial<IOptions>> = (options) =>
9898
context.debug(() => `rollup config:\n${JSON.stringify(rollupOptions, undefined, 4)}`);
9999
context.debug(() => `tsconfig path: ${tsConfigPath}`);
100100

101-
if (!pluginOptions.objectHashIgnoreUnknownHack)
101+
if (pluginOptions.objectHashIgnoreUnknownHack)
102102
context.warn(() => `${yellow("You are using 'objectHashIgnoreUnknownHack' option")}. If you enabled it because of async functions, try disabling it now.`);
103103

104104
if (watchMode)

0 commit comments

Comments
 (0)