Skip to content

Commit 98e6b79

Browse files
committed
Update dependencies
1 parent e3a122a commit 98e6b79

File tree

3 files changed

+12
-14
lines changed

3 files changed

+12
-14
lines changed

package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@
4343
"github-url-from-git": "^1.5.0",
4444
"hosted-git-info": "^7.0.1",
4545
"ignore-walk": "^6.0.4",
46-
"import-local": "^3.1.0",
46+
"import-local": "^3.2.0",
4747
"inquirer": "^9.2.15",
4848
"is-installed-globally": "^1.0.0",
4949
"is-interactive": "^2.0.0",
5050
"is-scoped": "^3.0.0",
51-
"issue-regex": "^4.1.0",
51+
"issue-regex": "^4.3.0",
5252
"listr": "^0.14.3",
5353
"listr-input": "^0.2.1",
5454
"log-symbols": "^6.0.0",
@@ -58,7 +58,7 @@
5858
"onetime": "^7.0.0",
5959
"open": "^10.0.4",
6060
"p-memoize": "^7.1.1",
61-
"p-timeout": "^6.1.2",
61+
"p-timeout": "^6.1.3",
6262
"path-exists": "^5.0.0",
6363
"pkg-dir": "^8.0.0",
6464
"read-package-up": "^11.0.0",
@@ -67,21 +67,21 @@
6767
"semver": "^7.6.0",
6868
"symbol-observable": "^4.0.0",
6969
"terminal-link": "^3.0.0",
70-
"update-notifier": "^7.0.0"
70+
"update-notifier": "^7.3.1"
7171
},
7272
"devDependencies": {
73-
"@sindresorhus/is": "^6.2.0",
73+
"@sindresorhus/is": "^7.0.1",
7474
"@types/semver": "^7.5.8",
75-
"ava": "^6.1.2",
75+
"ava": "^6.2.0",
7676
"common-tags": "^1.8.2",
77-
"esmock": "^2.6.4",
77+
"esmock": "^2.6.9",
7878
"fs-extra": "^11.2.0",
7979
"map-obj": "^5.0.2",
80-
"sinon": "^17.0.1",
80+
"sinon": "^19.0.2",
8181
"strip-ansi": "^7.1.0",
8282
"tempy": "^3.1.0",
83-
"write-package": "^7.0.1",
84-
"xo": "^0.57.0"
83+
"write-package": "^7.1.0",
84+
"xo": "^0.59.3"
8585
},
8686
"ava": {
8787
"files": [

source/version.js

-2
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,8 @@ const formatFirstDifference = (current, previous, diffColor) => {
3030
export default class Version {
3131
/** @type {SemVerInstance} */
3232
#version;
33-
3433
/** @type {SemVerIncrement | undefined} */
3534
#diff = undefined;
36-
3735
/** @type {string | undefined} */
3836
#prereleasePrefix = undefined;
3937

test/_helpers/mock-inquirer.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const mockPrompt = async ({t, inputAnswers, prompts}) => {
4848
continue;
4949
}
5050

51-
if (is.function_(prompt.when) && !prompt.when(answers)) {
51+
if (is.function(prompt.when) && !prompt.when(answers)) {
5252
t.log(`skipping prompt '${name}'`);
5353
continue;
5454
}
@@ -91,7 +91,7 @@ const mockPrompt = async ({t, inputAnswers, prompts}) => {
9191

9292
if (is.asyncFunction(prompt.choices)) {
9393
choices = await prompt.choices(answers);
94-
} else if (is.function_(prompt.choices)) {
94+
} else if (is.function(prompt.choices)) {
9595
choices = prompt.choices(answers);
9696
} else {
9797
choices = prompt.choices;

0 commit comments

Comments
 (0)