Skip to content

Commit 45faadb

Browse files
authored
Merge branch 'main' into bun
2 parents 92d8145 + 8fdac0c commit 45faadb

File tree

4 files changed

+17
-19
lines changed

4 files changed

+17
-19
lines changed

package.json

+14-14
Original file line numberDiff line numberDiff line change
@@ -36,30 +36,30 @@
3636
"chalk": "^5.3.0",
3737
"chalk-template": "^1.1.0",
3838
"cosmiconfig": "^8.3.6",
39-
"del": "^7.1.0",
39+
"del": "^8.0.0",
4040
"escape-goat": "^4.0.0",
4141
"escape-string-regexp": "^5.0.0",
4242
"execa": "^8.0.1",
4343
"exit-hook": "^4.0.0",
4444
"github-url-from-git": "^1.5.0",
45-
"hosted-git-info": "^7.0.1",
46-
"ignore-walk": "^6.0.4",
47-
"import-local": "^3.1.0",
45+
"hosted-git-info": "^8.0.2",
46+
"ignore-walk": "^7.0.0",
47+
"import-local": "^3.2.0",
4848
"inquirer": "^9.2.15",
4949
"is-installed-globally": "^1.0.0",
5050
"is-interactive": "^2.0.0",
5151
"is-scoped": "^3.0.0",
52-
"issue-regex": "^4.1.0",
52+
"issue-regex": "^4.3.0",
5353
"listr": "^0.14.3",
5454
"listr-input": "^0.2.1",
55-
"log-symbols": "^6.0.0",
55+
"log-symbols": "^7.0.0",
5656
"meow": "^13.2.0",
5757
"new-github-release-url": "^2.0.0",
5858
"npm-name": "^8.0.0",
5959
"onetime": "^7.0.0",
6060
"open": "^10.0.4",
6161
"p-memoize": "^7.1.1",
62-
"p-timeout": "^6.1.2",
62+
"p-timeout": "^6.1.3",
6363
"path-exists": "^5.0.0",
6464
"pkg-dir": "^8.0.0",
6565
"read-package-up": "^11.0.0",
@@ -68,21 +68,21 @@
6868
"semver": "^7.6.0",
6969
"symbol-observable": "^4.0.0",
7070
"terminal-link": "^3.0.0",
71-
"update-notifier": "^7.0.0"
71+
"update-notifier": "^7.3.1"
7272
},
7373
"devDependencies": {
74-
"@sindresorhus/is": "^6.2.0",
74+
"@sindresorhus/is": "^7.0.1",
7575
"@types/semver": "^7.5.8",
76-
"ava": "^6.1.2",
76+
"ava": "^6.2.0",
7777
"common-tags": "^1.8.2",
78-
"esmock": "^2.6.4",
78+
"esmock": "^2.6.9",
7979
"fs-extra": "^11.2.0",
8080
"map-obj": "^5.0.2",
81-
"sinon": "^17.0.1",
81+
"sinon": "^19.0.2",
8282
"strip-ansi": "^7.1.0",
8383
"tempy": "^3.1.0",
84-
"write-package": "^7.0.1",
85-
"xo": "^0.57.0"
84+
"write-package": "^7.1.0",
85+
"xo": "^0.59.3"
8686
},
8787
"ava": {
8888
"files": [

source/ui.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ const printCommitLog = async (repoUrl, registryUrl, fromLatestTag, releaseBranch
6666

6767
const releaseNotes = nextTag => commits.map(commit =>
6868
`- ${htmlEscape(commit.message)} ${commit.id}`,
69-
).join('\n') + `\n\n${repoUrl}/compare/${revision}...${nextTag}`;
69+
).join('\n') + `\n\n---\n\n${repoUrl}/compare/${revision}...${nextTag}`;
7070

7171
const commitRange = util.linkifyCommitRange(repoUrl, commitRangeText);
7272
console.log(`${chalk.bold('Commits:')}\n${history}\n\n${chalk.bold('Commit Range:')}\n${commitRange}\n\n${chalk.bold('Registry:')}\n${registryUrl}\n`);

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)