From 5530e6c3f429101a2b19468d5e62b491d3acee8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=C3=A1=C5=A1=20Nobile?= Date: Fri, 24 Feb 2023 20:35:24 +0100 Subject: [PATCH] docs(templates): separate script params and command params (#564) create script doesn't work without extra -- which separates script and command params wip Re-run actions --- templates/demo-store/README.md | 2 +- templates/hello-world/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/demo-store/README.md b/templates/demo-store/README.md index d1821f169b..d4025be234 100644 --- a/templates/demo-store/README.md +++ b/templates/demo-store/README.md @@ -25,7 +25,7 @@ Hydrogen is Shopify’s stack for headless commerce. Hydrogen is designed to dov - Node.js version 16.14.0 or higher ```bash -npm create @shopify/hydrogen@latest --template demo-store +npm create @shopify/hydrogen@latest -- --template demo-store ``` Remember to update `.env` with your shop's domain and Storefront API token! diff --git a/templates/hello-world/README.md b/templates/hello-world/README.md index 944c276487..71104802e9 100644 --- a/templates/hello-world/README.md +++ b/templates/hello-world/README.md @@ -24,7 +24,7 @@ Hydrogen is Shopify’s stack for headless commerce. Hydrogen is designed to dov - Node.js version 16.14.0 or higher ```bash -npm create @shopify/hydrogen@latest --template hello-world +npm create @shopify/hydrogen@latest -- --template hello-world ``` Remember to update `.env` with your shop's domain and Storefront API token!