use newer versions of node in render

This commit is contained in:
Tommy Parnell
2024-11-12 18:57:48 -05:00
parent e75ae35398
commit 163cb8899d
2 changed files with 7 additions and 2 deletions

2
package-lock.json generated
View File

@@ -24,7 +24,7 @@
"markdown-it-anchor": "^9.2.0" "markdown-it-anchor": "^9.2.0"
}, },
"engines": { "engines": {
"node": ">=14" "node": ">=22"
}, },
"funding": { "funding": {
"type": "opencollective", "type": "opencollective",

View File

@@ -23,7 +23,8 @@
}, },
"license": "MIT", "license": "MIT",
"engines": { "engines": {
"node": ">=14" "node": "^22",
"npm": "^10"
}, },
"funding": { "funding": {
"type": "opencollective", "type": "opencollective",
@@ -47,5 +48,9 @@
}, },
"dependencies": { "dependencies": {
"@11ty/eleventy-upgrade-help": "^3.0.1" "@11ty/eleventy-upgrade-help": "^3.0.1"
},
"volta": {
"node": "22.11.0",
"npm": "10.9.0"
} }
} }