Skip to content

Commit e89e0c1

Browse files
committed
Breaking: bump Node minimum to 18. Fixes #209
1 parent 4b1f4b0 commit e89e0c1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
11-
node: ["14", "16", "18", "20"]
11+
node: ["18", "20"]
1212
name: Node.js ${{ matrix.node }} on ${{ matrix.os }}
1313
steps:
1414
- uses: actions/checkout@v4

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# eleventy-img
44

5-
Requires Node 14.15+
5+
Requires Node 18+
66

77
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.
88

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "@11ty/eleventy-img",
3-
"version": "3.2.0",
3+
"version": "4.0.0",
44
"description": "Low level utility to perform build-time image transformations.",
55
"publishConfig": {
66
"access": "public"
77
},
88
"main": "img.js",
99
"engines": {
10-
"node": ">=14.15.0"
10+
"node": ">=18"
1111
},
1212
"scripts": {
1313
"pretest": "eslint img.js test/**.js",

0 commit comments

Comments
 (0)