From 00416b1abff87f161bed630a575f0b1b125a31cb Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Wed, 3 Apr 2024 17:02:33 +0900 Subject: [PATCH] Meta tweaks --- index.test-d.ts | 7 ++++++- package.json | 6 +++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/index.test-d.ts b/index.test-d.ts index 7f3c658..de7250f 100644 --- a/index.test-d.ts +++ b/index.test-d.ts @@ -1,5 +1,10 @@ import {expectType} from 'tsd'; -import {isMatch, firstMatch, matches, type Match} from './index.js'; +import { + isMatch, + firstMatch, + matches, + type Match, +} from './index.js'; expectType(isMatch(/\d/, '1', {timeout: 1000})); expectType(firstMatch(/\d/, '1', {timeout: 1000})); diff --git a/package.json b/package.json index 0b83594..1c82b68 100644 --- a/package.json +++ b/package.json @@ -48,8 +48,8 @@ "time-span": "^5.1.0" }, "devDependencies": { - "ava": "^5.3.1", - "tsd": "^0.29.0", - "xo": "^0.56.0" + "ava": "^6.1.2", + "tsd": "^0.31.0", + "xo": "^0.58.0" } }