Skip to content

Commit

Permalink
Require Node.js 18
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Dec 19, 2023
1 parent 6229229 commit bb32fe9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 13 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/main.yml
Expand Up @@ -10,12 +10,11 @@ jobs:
fail-fast: false
matrix:
node-version:
- 20
- 18
- 16
- 14
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
Expand Down
18 changes: 9 additions & 9 deletions package.json
Expand Up @@ -12,10 +12,10 @@
},
"type": "module",
"bin": {
"open-cli": "cli.js"
"open-cli": "./cli.js"
},
"engines": {
"node": ">=14.16"
"node": ">=18"
},
"scripts": {
"test": "xo && ava"
Expand Down Expand Up @@ -51,15 +51,15 @@
"file"
],
"dependencies": {
"file-type": "^18.2.1",
"file-type": "^18.7.0",
"get-stdin": "^9.0.0",
"meow": "^11.0.0",
"open": "^9.0.0",
"tempy": "^3.0.0"
"meow": "^12.1.1",
"open": "^10.0.0",
"tempy": "^3.1.0"
},
"devDependencies": {
"ava": "^5.2.0",
"execa": "^7.1.1",
"xo": "^0.53.1"
"ava": "^6.0.1",
"execa": "^8.0.1",
"xo": "^0.56.0"
}
}

0 comments on commit bb32fe9

Please sign in to comment.