Skip to content

Commit 52aa861

Browse files
committed
Explicit Node 18+ Fixes #2
1 parent cd56054 commit 52aa861

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
A temporary fork of [`timkendrick/recursive-copy`](https://github.com/timkendrick/recursive-copy) to satisfy https://github.com/11ty/eleventy/issues/3299 as Eleventy slowly [moves to use Node native API `fs.cp`](https://github.com/11ty/eleventy/issues/3360).
44

5+
- v4.x requires Node 18+
6+
- v3.x requires Node 0.10+
7+
- v2.x requires Node 0.10+
8+
59
> Simple, flexible file copy utility
610
711
## Features

package.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
{
22
"name": "@11ty/recursive-copy",
3-
"version": "3.0.1",
3+
"version": "4.0.0",
44
"description": "A fork of `recursive-copy`: Simple, flexible file copy utility",
5+
"engines": {
6+
"node": ">=18"
7+
},
58
"main": "index.js",
69
"types": "index.d.ts",
710
"directories": {
@@ -40,6 +43,9 @@
4043
"regexp"
4144
],
4245
"author": "Tim Kendrick <[email protected]>",
46+
"contributors": [
47+
"Zach Leatherman <[email protected]> (https://zachleat.com/)"
48+
],
4349
"license": "ISC",
4450
"bugs": {
4551
"url": "https://github.com/11ty/recursive-copy/issues"

0 commit comments

Comments
 (0)