Skip to content

Commit 649a3b0

Browse files
authored
chore: update dependencies (#621)
1 parent e6a8547 commit 649a3b0

File tree

6 files changed

+26
-26
lines changed

6 files changed

+26
-26
lines changed

bin/ncu-ci.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ class URLCommand extends CICommand {
485485
}
486486
for (const [type, ci] of ciMap) {
487487
queue.push({
488-
type: type,
488+
type,
489489
jobid: ci.jobid
490490
});
491491
}

bin/ncu-team.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ yargs(hideBin(process.argv)).command({
2828
default: 'nodejs'
2929
});
3030
},
31-
handler: handler
31+
handler
3232
})
3333
.command({
3434
command: 'sync <file>',
@@ -41,7 +41,7 @@ yargs(hideBin(process.argv)).command({
4141
type: 'string'
4242
});
4343
},
44-
handler: handler
44+
handler
4545
})
4646
.demandCommand(1, 'must provide a valid command')
4747
.help()

lib/ci/ci_type_parser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ export function parseJobFromURL(url) {
112112
return {
113113
link: url,
114114
jobid: parseInt(match[1]),
115-
type: type
115+
type
116116
};
117117
}
118118
}

lib/request.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ export default class Request {
9999
Accept: 'application/vnd.github.antiope-preview+json'
100100
},
101101
body: JSON.stringify({
102-
query: query,
103-
variables: variables
102+
query,
103+
variables
104104
})
105105
};
106106

package.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -32,36 +32,36 @@
3232
"license": "MIT",
3333
"dependencies": {
3434
"branch-diff": "^1.10.5",
35-
"chalk": "^5.0.0",
36-
"changelog-maker": "^2.7.4",
35+
"chalk": "^5.0.1",
36+
"changelog-maker": "^2.8.0",
3737
"cheerio": "^1.0.0-rc.10",
3838
"clipboardy": "^3.0.0",
39-
"core-validate-commit": "^3.13.4",
40-
"execa": "^6.0.0",
41-
"figures": "^4.0.0",
39+
"core-validate-commit": "^3.16.0",
40+
"execa": "^6.1.0",
41+
"figures": "^4.0.1",
4242
"form-data": "^4.0.0",
4343
"ghauth": "^4.0.0",
44-
"inquirer": "^8.2.0",
45-
"listr2": "^3.13.5",
44+
"inquirer": "^8.2.2",
45+
"listr2": "^4.0.5",
4646
"lodash": "^4.17.21",
4747
"log-symbols": "^5.1.0",
48-
"node-fetch": "^3.1.0",
49-
"ora": "^6.0.1",
48+
"node-fetch": "^3.2.3",
49+
"ora": "^6.1.0",
5050
"proxy-agent": "^5.0.0",
5151
"replace-in-file": "^6.3.2",
5252
"rimraf": "^3.0.2",
5353
"which": "^2.0.2",
54-
"yargs": "^17.3.0"
54+
"yargs": "^17.4.1"
5555
},
5656
"devDependencies": {
57-
"c8": "^7.10.0",
58-
"eslint": "^7.32.0",
59-
"eslint-config-standard": "^16.0.3",
60-
"eslint-plugin-import": "^2.25.2",
57+
"c8": "^7.11.2",
58+
"eslint": "^8.13.0",
59+
"eslint-config-standard": "^17.0.0",
60+
"eslint-plugin-import": "^2.26.0",
6161
"eslint-plugin-node": "^11.1.0",
62-
"eslint-plugin-promise": "^4.3.1",
62+
"eslint-plugin-promise": "^6.0.0",
6363
"eslint-plugin-standard": "^4.1.0",
64-
"mocha": "^9.1.3",
65-
"sinon": "^12.0.1"
64+
"mocha": "^9.2.2",
65+
"sinon": "^13.0.2"
6666
}
6767
}

test/unit/pr_checker.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1299,7 +1299,7 @@ describe('PRChecker', () => {
12991299
reviewers: allGreenReviewers,
13001300
comments: comment,
13011301
reviews: approvingReviews,
1302-
commits: commits,
1302+
commits,
13031303
collaborators,
13041304
authorIsNew: () => true,
13051305
getThread() {
@@ -1346,7 +1346,7 @@ describe('PRChecker', () => {
13461346
reviewers: allGreenReviewers,
13471347
comments: comment,
13481348
reviews: approvingReviews,
1349-
commits: commits,
1349+
commits,
13501350
collaborators,
13511351
authorIsNew: () => true,
13521352
getThread() {
@@ -1389,7 +1389,7 @@ describe('PRChecker', () => {
13891389
reviewers: allGreenReviewers,
13901390
comments: comment,
13911391
reviews: approvingReviews,
1392-
commits: commits,
1392+
commits,
13931393
collaborators,
13941394
authorIsNew: () => true,
13951395
getThread() {

0 commit comments

Comments
 (0)