Skip to content

Commit 9e2b772

Browse files
committed
Update dependencies
1 parent da7c464 commit 9e2b772

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,21 +40,21 @@
4040
"has-yarn": "^2.1.0",
4141
"import-lazy": "^2.1.0",
4242
"is-ci": "^2.0.0",
43-
"is-installed-globally": "^0.3.1",
43+
"is-installed-globally": "^0.3.2",
4444
"is-npm": "^5.0.0",
4545
"is-yarn-global": "^0.3.0",
46-
"latest-version": "^5.0.0",
47-
"pupa": "^2.0.1",
46+
"latest-version": "^5.1.0",
47+
"pupa": "^2.1.1",
4848
"semver": "^7.3.2",
4949
"semver-diff": "^3.1.1",
5050
"xdg-basedir": "^4.0.0"
5151
},
5252
"devDependencies": {
5353
"ava": "^2.4.0",
54-
"clear-module": "^4.0.0",
54+
"clear-module": "^4.1.1",
5555
"fixture-stdout": "^0.2.1",
5656
"mock-require": "^3.0.3",
5757
"strip-ansi": "^6.0.0",
58-
"xo": "^0.33.1"
58+
"xo": "^0.34.1"
5959
}
6060
}

test/notify.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import util from 'util';
1+
import {inherits} from 'util';
22
import clearModule from 'clear-module';
33
import FixtureStdout from 'fixture-stdout';
44
import stripAnsi from 'strip-ansi';
@@ -26,7 +26,7 @@ const setupTest = isNpmReturnValue => {
2626
process.stdout.isTTY = true;
2727
mock('is-npm', {isNpmOrYarn: isNpmReturnValue || false});
2828
const updateNotifier = require('..');
29-
util.inherits(Control, updateNotifier.UpdateNotifier);
29+
inherits(Control, updateNotifier.UpdateNotifier);
3030
};
3131

3232
let errorLogs = '';

0 commit comments

Comments
 (0)