Skip to content

Commit 7c96d93

Browse files
committedJul 26, 2024
Update dependencies
1 parent 622d814 commit 7c96d93

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed
 

Diff for: ‎index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ const renameFile = (source, rename) => {
136136
export default function cpy(
137137
source,
138138
destination,
139-
{concurrency = os.availableParallelism(), ...options} = {},
139+
{concurrency = os.availableParallelism(), ...options} = {}, // eslint-disable-line n/no-unsupported-features/node-builtins
140140
) {
141141
const copyStatus = new Map();
142142

Diff for: ‎package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -51,19 +51,19 @@
5151
],
5252
"dependencies": {
5353
"copy-file": "^11.0.0",
54-
"globby": "^13.2.2",
54+
"globby": "^14.0.2",
5555
"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"
5959
},
6060
"devDependencies": {
61-
"ava": "^5.3.1",
61+
"ava": "^6.1.3",
6262
"proxyquire": "^2.1.3",
6363
"rimraf": "^5.0.5",
6464
"tempy": "^3.1.0",
65-
"tsd": "^0.29.0",
66-
"xo": "^0.56.0"
65+
"tsd": "^0.31.1",
66+
"xo": "^0.59.2"
6767
},
6868
"xo": {
6969
"rules": {

Diff for: ‎test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ test('reports correct completedSize', async t => {
462462
test('returns the event emitter on early rejection', t => {
463463
const rejectedPromise = cpy(null, null);
464464
t.is(typeof rejectedPromise.on, 'function');
465-
rejectedPromise.catch(() => {});
465+
rejectedPromise.catch(() => {}); // eslint-disable-line promise/prefer-await-to-then
466466
});
467467

468468
test('returns destination path', async t => {

0 commit comments

Comments
 (0)
Please sign in to comment.