Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Jul 26, 2024
1 parent cd47a38 commit bc322bd
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
4 changes: 0 additions & 4 deletions .github/funding.yml

This file was deleted.

5 changes: 3 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@ jobs:
fail-fast: false
matrix:
node-version:
- 22
- 20
- 18
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
2 changes: 1 addition & 1 deletion index.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import process from 'node:process';
import {test} from 'node:test';
import {test} from 'node:test'; // eslint-disable-line n/no-unsupported-features/node-builtins
import assert from 'node:assert';
import {spawnSync} from 'node:child_process';
import os from 'node:os';
Expand Down
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
},
"type": "module",
"exports": "./index.js",
"types": "./index.d.ts",
"sideEffects": false,
"engines": {
"node": ">=18"
},
Expand Down Expand Up @@ -45,11 +47,11 @@
"command-line"
],
"dependencies": {
"onetime": "^6.0.0",
"onetime": "^7.0.0",
"signal-exit": "^4.1.0"
},
"devDependencies": {
"tsd": "^0.29.0",
"xo": "^0.56.0"
"tsd": "^0.31.1",
"xo": "^0.59.2"
}
}

0 comments on commit bc322bd

Please sign in to comment.