From cf4dc3bf79b1e5f7391f21b8dfdc9918d0ec13a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isaac=20Rold=C3=A1n?= Date: Wed, 21 Aug 2024 16:31:39 +0200 Subject: [PATCH] Update .gitignore Add ``` .shopify/* --> ignores build outputs produced during dev .shopify.lock --> ignores lock files used during extension create ``` to .gitignore --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 081c936..1300938 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,7 @@ .env .env.* + +# Ignore shopify files created during app dev +.shopify/* +.shopify.lock