Skip to content

chore(deps-dev): bump terser-webpack-plugin from 5.3.10 to 5.3.14 #753

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 7 additions & 22 deletions package-lock.json

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


Unchanged files with check annotations Beta

import { css } from '@patternfly/react-styles';
import { createUseStyles } from 'react-jss';
type Render = (config: { msg: string }) => ReactElement<any, any> | null;

Check warning on line 7 in packages/module/src/StaleDataWarning/StaleDataWarning.tsx

GitHub Actions / call-build-lint-test-workflow / lint

Unexpected any. Specify a different type

Check warning on line 7 in packages/module/src/StaleDataWarning/StaleDataWarning.tsx

GitHub Actions / call-build-lint-test-workflow / lint

Unexpected any. Specify a different type
type CullingDate = string | number | Date;
interface StaleDataInfo {
/** Current date */
currDate: CullingDate;
/** Optional prop to add custom children */
children?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | undefined;

Check warning on line 51 in packages/module/src/StaleDataWarning/StaleDataWarning.tsx

GitHub Actions / call-build-lint-test-workflow / lint

Unexpected any. Specify a different type

Check warning on line 51 in packages/module/src/StaleDataWarning/StaleDataWarning.tsx

GitHub Actions / call-build-lint-test-workflow / lint

Unexpected any. Specify a different type
/** Option to add custom message ReactElement */
render?: Render;
/** Optional custom warning message */
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export const BasicExample: FunctionComponent = () => (
<Severity label="Undefined" severity={'an unknown value' as any} />

Check warning on line 6 in packages/module/patternfly-docs/content/extensions/component-groups/examples/Severity/SeverityUndefinedExample.tsx

GitHub Actions / call-build-lint-test-workflow / lint

Unexpected any. Specify a different type
);