Skip to content

Commit

Permalink
🔼 Update dependency to require node v18
Browse files Browse the repository at this point in the history
  • Loading branch information
michenly committed Dec 5, 2023
1 parent e2f1ede commit 82998a8
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 10 deletions.
10 changes: 10 additions & 0 deletions .changeset/cyan-bugs-reflect.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
'@shopify/hydrogen-react': patch
'customer-api': patch
'@shopify/mini-oxygen': patch
'multi': patch
'skeleton': patch
'@shopify/cli-hydrogen': patch
---

Update required Node dependency to v18. This should not cause any breaking change since v18 is required by Remix v2 but this update makes it official.
2 changes: 1 addition & 1 deletion examples/customer-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@
"typescript": "^5.2.2"
},
"engines": {
"node": ">=16.13"
"node": ">=18.0.0"
}
}
2 changes: 1 addition & 1 deletion examples/express/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"typescript": "^5.2.2"
},
"engines": {
"node": ">=14"
"node": ">=18.0.0"
},
"version": null
}
2 changes: 1 addition & 1 deletion examples/multipass/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@
"typescript": "^5.2.2"
},
"engines": {
"node": ">=16.13"
"node": ">=18.0.0"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"yorkie": "^2.0.0"
},
"engines": {
"node": ">=16.13"
"node": ">=18.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"oclif.manifest.json"
],
"engines": {
"node": ">=16.13"
"node": ">=18.0.0"
},
"oclif": {
"commands": "dist/commands",
Expand Down
2 changes: 1 addition & 1 deletion packages/hydrogen-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"homepage": "https://github.com/Shopify/hydrogen/tree/main/packages/hydrogen-react",
"license": "MIT",
"engines": {
"node": ">=14"
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public",
Expand Down
2 changes: 1 addition & 1 deletion packages/mini-oxygen/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"dist"
],
"engines": {
"node": ">=16.13.0"
"node": ">=18.0.0"
},
"dependencies": {
"@miniflare/cache": "^2.14.1",
Expand Down
2 changes: 1 addition & 1 deletion templates/demo-store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@
"typescript": "^5.2.2"
},
"engines": {
"node": ">=16.13"
"node": ">=18.0.0"
}
}
2 changes: 1 addition & 1 deletion templates/hello-world/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@
"typescript": "^5.2.2"
},
"engines": {
"node": ">=16.13"
"node": ">=18.0.0"
}
}
2 changes: 1 addition & 1 deletion templates/skeleton/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@
"typescript": "^5.2.2"
},
"engines": {
"node": ">=16.13"
"node": ">=18.0.0"
}
}

0 comments on commit 82998a8

Please sign in to comment.