Skip to content

Commit

Permalink
- warning message for objectHashIgnoreUnknownHack option
Browse files Browse the repository at this point in the history
  • Loading branch information
ezolenko committed Feb 11, 2020
1 parent 417c8e5 commit cd76b42
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions dist/rollup-plugin-typescript2.cjs.js
Expand Up @@ -28961,6 +28961,8 @@ 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)
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`);
}
Expand Down
2 changes: 1 addition & 1 deletion dist/rollup-plugin-typescript2.cjs.js.map

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions dist/rollup-plugin-typescript2.es.js
Expand Up @@ -28955,6 +28955,8 @@ 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)
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`);
}
Expand Down
2 changes: 1 addition & 1 deletion dist/rollup-plugin-typescript2.es.js.map

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions src/index.ts
Expand Up @@ -98,6 +98,9 @@ const typescript: PluginImpl<Partial<IOptions>> = (options) =>
context.debug(() => `rollup config:\n${JSON.stringify(rollupOptions, undefined, 4)}`);
context.debug(() => `tsconfig path: ${tsConfigPath}`);

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)
context.info(`running in watch mode`);
}
Expand Down

0 comments on commit cd76b42

Please sign in to comment.