Skip to content

Commit

Permalink
Breaking: bump Node minimum to 18. Fixes #209
Browse files Browse the repository at this point in the history
  • Loading branch information
zachleat committed Feb 10, 2024
1 parent 4b1f4b0 commit e89e0c1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
node: ["14", "16", "18", "20"]
node: ["18", "20"]
name: Node.js ${{ matrix.node }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# eleventy-img

Requires Node 14.15+
Requires Node 18+

Low level utility to perform build-time image transformations for both vector and raster images. Output multiple sizes, save multiple formats, cache remote images locally. Uses the [sharp](https://sharp.pixelplumbing.com/) image processor.

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@11ty/eleventy-img",
"version": "3.2.0",
"version": "4.0.0",
"description": "Low level utility to perform build-time image transformations.",
"publishConfig": {
"access": "public"
},
"main": "img.js",
"engines": {
"node": ">=14.15.0"
"node": ">=18"
},
"scripts": {
"pretest": "eslint img.js test/**.js",
Expand Down

0 comments on commit e89e0c1

Please sign in to comment.