Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
1000ch committed Mar 31, 2022
1 parent 47382fe commit bb20528
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@
"bin-wrapper": "^4.0.0"
},
"devDependencies": {
"ava": "^3.15.0",
"ava": "^4.1.0",
"bin-check": "^4.0.1",
"compare-size": "^3.0.0",
"execa": "^5.1.1",
"execa": "^6.1.0",
"tempy": "^2.0.0",
"xo": "^0.45.0"
"xo": "^0.48.0"
}
}
4 changes: 2 additions & 2 deletions test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import path from 'node:path';
import process from 'node:process';
import {fileURLToPath} from 'node:url';
import test from 'ava';
import execa from 'execa';
import {execa} from 'execa';
import tempy from 'tempy';
import binCheck from 'bin-check';
import binBuild from 'bin-build';
Expand Down Expand Up @@ -34,7 +34,7 @@ test('return path to binary and verify that it is working', async t => {

test('minify a PNG', async t => {
const temporary = tempy.directory();
const sourcePath = fileURLToPath(new URL('./fixtures/test.png', import.meta.url));
const sourcePath = fileURLToPath(new URL('fixtures/test.png', import.meta.url));
const destinationPath = path.join(temporary, 'test.png');
const arguments_ = [
'-strip',
Expand Down

0 comments on commit bb20528

Please sign in to comment.