In my .env I have the following variable:
SHOPIFY_STORE_URL=mystore.myshopify.com
Now I want to use this variable in a npm script:
"scripts": {
"shopify-login": "shopify login --store=SHOPIFY_STORE_URL",
},
so $ npm run shopify-login
should execute $ shopify login --store=mystore.myshopify.com
How can I achieve this?