From 8e561e9ab3c4ba259b0fb47342aaf603bfd6c445 Mon Sep 17 00:00:00 2001 From: ehmicky Date: Mon, 5 Aug 2024 19:49:17 +0100 Subject: [PATCH] Re-add support for Node 18.18.0 --- README.md | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 856ddee..b4e11d0 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ stringByteLength('🦄') // 4 npm install string-byte-length ``` -This package works in both Node.js >=18.20.0 and +This package works in both Node.js >=18.18.0 and [browsers](https://raw.githubusercontent.com/ehmicky/dev-tasks/main/src/browserslist). This is an ES module. It must be loaded using diff --git a/package.json b/package.json index b6ef1b2..145abfc 100644 --- a/package.json +++ b/package.json @@ -59,6 +59,6 @@ "test-each": "^7.0.0" }, "engines": { - "node": ">=18.20.0" + "node": ">=18.18.0" } }