File tree Expand file tree Collapse file tree 6 files changed +26
-26
lines changed Expand file tree Collapse file tree 6 files changed +26
-26
lines changed Original file line number Diff line number Diff line change @@ -485,7 +485,7 @@ class URLCommand extends CICommand {
485
485
}
486
486
for ( const [ type , ci ] of ciMap ) {
487
487
queue . push ( {
488
- type : type ,
488
+ type,
489
489
jobid : ci . jobid
490
490
} ) ;
491
491
}
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ yargs(hideBin(process.argv)).command({
28
28
default : 'nodejs'
29
29
} ) ;
30
30
} ,
31
- handler : handler
31
+ handler
32
32
} )
33
33
. command ( {
34
34
command : 'sync <file>' ,
@@ -41,7 +41,7 @@ yargs(hideBin(process.argv)).command({
41
41
type : 'string'
42
42
} ) ;
43
43
} ,
44
- handler : handler
44
+ handler
45
45
} )
46
46
. demandCommand ( 1 , 'must provide a valid command' )
47
47
. help ( )
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ export function parseJobFromURL(url) {
112
112
return {
113
113
link : url ,
114
114
jobid : parseInt ( match [ 1 ] ) ,
115
- type : type
115
+ type
116
116
} ;
117
117
}
118
118
}
Original file line number Diff line number Diff line change @@ -99,8 +99,8 @@ export default class Request {
99
99
Accept : 'application/vnd.github.antiope-preview+json'
100
100
} ,
101
101
body : JSON . stringify ( {
102
- query : query ,
103
- variables : variables
102
+ query,
103
+ variables
104
104
} )
105
105
} ;
106
106
Original file line number Diff line number Diff line change 32
32
"license" : " MIT" ,
33
33
"dependencies" : {
34
34
"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 " ,
37
37
"cheerio" : " ^1.0.0-rc.10" ,
38
38
"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 " ,
42
42
"form-data" : " ^4.0.0" ,
43
43
"ghauth" : " ^4.0.0" ,
44
- "inquirer" : " ^8.2.0 " ,
45
- "listr2" : " ^3.13 .5" ,
44
+ "inquirer" : " ^8.2.2 " ,
45
+ "listr2" : " ^4.0 .5" ,
46
46
"lodash" : " ^4.17.21" ,
47
47
"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 " ,
50
50
"proxy-agent" : " ^5.0.0" ,
51
51
"replace-in-file" : " ^6.3.2" ,
52
52
"rimraf" : " ^3.0.2" ,
53
53
"which" : " ^2.0.2" ,
54
- "yargs" : " ^17.3.0 "
54
+ "yargs" : " ^17.4.1 "
55
55
},
56
56
"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 " ,
61
61
"eslint-plugin-node" : " ^11.1.0" ,
62
- "eslint-plugin-promise" : " ^4.3.1 " ,
62
+ "eslint-plugin-promise" : " ^6.0.0 " ,
63
63
"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 "
66
66
}
67
67
}
Original file line number Diff line number Diff line change @@ -1299,7 +1299,7 @@ describe('PRChecker', () => {
1299
1299
reviewers : allGreenReviewers ,
1300
1300
comments : comment ,
1301
1301
reviews : approvingReviews ,
1302
- commits : commits ,
1302
+ commits,
1303
1303
collaborators,
1304
1304
authorIsNew : ( ) => true ,
1305
1305
getThread ( ) {
@@ -1346,7 +1346,7 @@ describe('PRChecker', () => {
1346
1346
reviewers : allGreenReviewers ,
1347
1347
comments : comment ,
1348
1348
reviews : approvingReviews ,
1349
- commits : commits ,
1349
+ commits,
1350
1350
collaborators,
1351
1351
authorIsNew : ( ) => true ,
1352
1352
getThread ( ) {
@@ -1389,7 +1389,7 @@ describe('PRChecker', () => {
1389
1389
reviewers : allGreenReviewers ,
1390
1390
comments : comment ,
1391
1391
reviews : approvingReviews ,
1392
- commits : commits ,
1392
+ commits,
1393
1393
collaborators,
1394
1394
authorIsNew : ( ) => true ,
1395
1395
getThread ( ) {
You can’t perform that action at this time.
0 commit comments