Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: webpack-contrib/webpack-bundle-analyzer
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7f41c16d6acca61760c9da1421bf3900049f9a5a
Choose a base ref
..
head repository: webpack-contrib/webpack-bundle-analyzer
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2801c02970d4ffe192a1beb57da15f21daafbdf1
Choose a head ref
Showing with 3 additions and 3 deletions.
  1. +2 −2 client/components/Search.jsx
  2. +1 −1 package.json
4 changes: 2 additions & 2 deletions client/components/Search.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// TODO: switch to a more modern debounce package once we drop Node.js 10 support
import debounce from 'debounce';
import debounce from 'lodash.debounce';

import s from './Search.css';
import Button from './Button';
@@ -14,7 +14,7 @@ export default class Search extends PureComponent {
}

componentWillUnmount() {
this.handleValueChange.cancel && this.handleValueChange.cancel();
this.handleValueChange.cancel();
}

render() {
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -37,7 +37,7 @@
"acorn": "^8.0.4",
"acorn-walk": "^8.0.0",
"commander": "^7.2.0",
"debounce": "^1.2.1",
"lodash.debounce": "^4.0.8",
"escape-string-regexp": "^4.0.0",
"gzip-size": "^6.0.0",
"html-escaper": "^2.0.2",