From 568b073c18f8b6b616a1e58359a3ddb188175da7 Mon Sep 17 00:00:00 2001 From: Ryan Zimmerman Date: Thu, 28 Dec 2023 21:43:45 -0500 Subject: [PATCH] BREAKING: Require Node v18+ (#551) --- .github/workflows/ci.yaml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a6bf20f4..967536e3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [14.x, 16.x, 18.x] + node-version: [18.x, 20.x] steps: - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} diff --git a/package.json b/package.json index 11d8e96c..d74b037d 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,7 @@ "lib" ], "engines": { - "node": ">=14.0.0" + "node": ">=18.0.0" }, "dependencies": { "postcss-value-parser": "^4.0.0",