Skip to content

Commit

Permalink
Drop Node.js 12 support (#137)
Browse files Browse the repository at this point in the history
* Drop Node.js 12 support

* Update dependencies
  • Loading branch information
1000ch authored May 1, 2022
1 parent 701718c commit b653fc8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ jobs:
node-version:
- 16
- 14
- 12
os:
- ubuntu-latest
- macos-latest
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"gifsicle": "cli.js"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
"node": "^14.13.1 || >=16.0.0"
},
"scripts": {
"postinstall": "node lib/install.js",
Expand All @@ -38,13 +38,13 @@
"dependencies": {
"bin-build": "^3.0.0",
"bin-wrapper": "^4.0.0",
"execa": "^5.1.1"
"execa": "^6.1.0"
},
"devDependencies": {
"ava": "^3.15.0",
"ava": "^4.1.0",
"bin-check": "^4.0.1",
"compare-size": "^3.0.0",
"tempy": "^2.0.0",
"xo": "^0.45.0"
"xo": "^0.48.0"
}
}
2 changes: 1 addition & 1 deletion 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

0 comments on commit b653fc8

Please sign in to comment.