Skip to content

Commit

Permalink
[examples] Enforce node18 on Python and Ruby examples (#11319)
Browse files Browse the repository at this point in the history
We have to enforce the node version on some examples to make sure they
are not auto upgraded in the future before we support their runtime.

See https://vercel.com/docs/deployments/build-image
  • Loading branch information
ofhouse committed Mar 25, 2024
1 parent 988f7b7 commit 7054532
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
5 changes: 5 additions & 0 deletions examples/hugo/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"engines": {
"node": "18.x"
}
}
5 changes: 5 additions & 0 deletions examples/jekyll/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"engines": {
"node": "18.x"
}
}
5 changes: 5 additions & 0 deletions examples/middleman/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"engines": {
"node": "18.x"
}
}
5 changes: 5 additions & 0 deletions examples/zola/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"engines": {
"node": "18.x"
}
}

0 comments on commit 7054532

Please sign in to comment.