File tree 3 files changed +9
-9
lines changed
3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ const renameFile = (source, rename) => {
136
136
export default function cpy (
137
137
source ,
138
138
destination ,
139
- { concurrency = os . availableParallelism ( ) , ...options } = { } ,
139
+ { concurrency = os . availableParallelism ( ) , ...options } = { } , // eslint-disable-line n/no-unsupported-features/node-builtins
140
140
) {
141
141
const copyStatus = new Map ( ) ;
142
142
Original file line number Diff line number Diff line change 51
51
],
52
52
"dependencies" : {
53
53
"copy-file" : " ^11.0.0" ,
54
- "globby" : " ^13.2 .2" ,
54
+ "globby" : " ^14.0 .2" ,
55
55
"junk" : " ^4.0.1" ,
56
- "micromatch" : " ^4.0.5 " ,
57
- "p-filter" : " ^3.0 .0" ,
58
- "p-map" : " ^6 .0.0 "
56
+ "micromatch" : " ^4.0.7 " ,
57
+ "p-filter" : " ^4.1 .0" ,
58
+ "p-map" : " ^7 .0.2 "
59
59
},
60
60
"devDependencies" : {
61
- "ava" : " ^5.3.1 " ,
61
+ "ava" : " ^6.1.3 " ,
62
62
"proxyquire" : " ^2.1.3" ,
63
63
"rimraf" : " ^5.0.5" ,
64
64
"tempy" : " ^3.1.0" ,
65
- "tsd" : " ^0.29.0 " ,
66
- "xo" : " ^0.56.0 "
65
+ "tsd" : " ^0.31.1 " ,
66
+ "xo" : " ^0.59.2 "
67
67
},
68
68
"xo" : {
69
69
"rules" : {
Original file line number Diff line number Diff line change @@ -462,7 +462,7 @@ test('reports correct completedSize', async t => {
462
462
test ( 'returns the event emitter on early rejection' , t => {
463
463
const rejectedPromise = cpy ( null , null ) ;
464
464
t . is ( typeof rejectedPromise . on , 'function' ) ;
465
- rejectedPromise . catch ( ( ) => { } ) ;
465
+ rejectedPromise . catch ( ( ) => { } ) ; // eslint-disable-line promise/prefer-await-to-then
466
466
} ) ;
467
467
468
468
test ( 'returns destination path' , async t => {
You can’t perform that action at this time.
0 commit comments