From 3fc50fc5572775ad2fd2010fe1b3c45fa2994dd8 Mon Sep 17 00:00:00 2001 From: Justin Wind Date: Mon, 2 Dec 2024 11:03:45 -0800 Subject: [PATCH] fix tests for later node versions --- eslint.config.js | 1 + package-lock.json | 9 +++++---- package.json | 4 ++-- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/eslint.config.js b/eslint.config.js index ec1d5c1..c33e182 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -109,6 +109,7 @@ module.exports = [ }, rules: { 'n/no-unpublished-require': 'off', + 'n/no-unsupported-features/node-builtins': 'warn', 'jsdoc/require-jsdoc': 'off', 'sonarjs/no-duplicate-string': 'off', }, diff --git a/package-lock.json b/package-lock.json index 9838bf5..e1ade1a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -22,7 +22,7 @@ "nyc": "^17" }, "engines": { - "node": ">=20" + "node": ">=20.13.0" }, "peerDependencies": { "eslint": ">= 9" @@ -1567,9 +1567,10 @@ } }, "node_modules/globals": { - "version": "15.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-15.12.0.tgz", - "integrity": "sha512-1+gLErljJFhbOVyaetcwJiJ4+eLe45S2E7P5UiZ9xGfeq3ATQf5DOv9G7MH3gGbKQLkzmNh2DxfZwLdw+j6oTQ==", + "version": "15.13.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-15.13.0.tgz", + "integrity": "sha512-49TewVEz0UxZjr1WYYsWpPrhyC/B/pA8Bq0fUmet2n+eR7yn0IvNzNaoBwnK6mdkzcN+se7Ez9zUgULTz2QH4g==", + "license": "MIT", "engines": { "node": ">=18" }, diff --git a/package.json b/package.json index 8b09371..85aabe6 100644 --- a/package.json +++ b/package.json @@ -16,8 +16,8 @@ "coverage": "nyc npm test", "coverage-check": "nyc check-coverage", "eslint": "eslint .", - "test": "node --test test", - "test:watch": "node --test --watch test", + "test": "node --test", + "test:watch": "node --test --watch", "prepare": "husky" }, "keywords": [ -- 2.49.0