Closed dev-mr closed 1 month ago
Thank you for reporting this issue, @dev-mr!
It's the !./locales/*.schema.json
pattern that is ignoring the other files.
We're putting a lot of effort into supporting backward-compatible matches in the new implementation of theme commands. However, for this issue specifically, the !./locales/*.schema.json
pattern wasn't supported by the legacy version (it was pretty much ignored). In other words, it was working because negated patterns were ignored.
However, I do agree the CLI should support negated patterns, as suggested. While supporting that isn't a backward-compatible behavior, negated patterns were being ignored, so we may introduce support for this.
Until that happens, you can work around this problem using a regex pattern. In my local tests, this works as expected:
config/settings_data.json
sections/*.json
templates/*.json
templates/**/*.json
/locales\/(?!.*\.schema\.json$).*\.json/
Thanks again for reporting this!
Hi @karreiro ! Thanks for quick reply.
/locales\/(?!.*\.schema\.json$).*\.json/
did indeed do the trick. Added to the docs for our team. 👍🏻
Please confirm that you have:
In which of these areas are you experiencing a problem?
Theme
Expected behavior
shopify-cli
should correctly interpret.shopifyignore
and follow the rules specified.Actual behavior
cli
runs but ignores all theme files likesnippets
,templates
, etc.None of these folders are mentioned in
.shopifyignore
.shopifyignore used
cli ignores
layout/theme.liquid
saying that it's ignored in.shopifyignore
file.Verbose output
$ ./node_modules/.bin/shopify theme dev --environment development --verbose 2024-10-22T00:46:12.715Z: Running command theme dev 2024-10-22T00:46:12.725Z: Reading the content of file at shopify.theme.toml... ╭─ info ─────────────────────────────────────────────────────────────────────────────────────────────────────────────╮ │ │ │ Using applicable flags from development environment: │ │ │ │ • store: xxxxxxxxxxxxx.myshopify.com │ │ • theme: xxxxxxxxxxxx │ │ • password: ****f445 │ │ │ ╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
2024-10-22T00:46:12.798Z: Ensuring that the user is authenticated with the Theme API with the following scopes: []
2024-10-22T00:46:13.326Z: Request to https://theme-kit-access.shopifyapps.com/cli/admin/api/unstable/themes.json?fields=id%2Cname%2Crole%2Cprocessing completed in 526 ms With response headers:
2024-10-22T00:46:13.406Z: Port 9292 is free 2024-10-22T00:46:13.457Z: Reading the content of file at .shopifyignore... 2024-10-22T00:46:13.459Z: Reading the content of file at assets/404.autostyle.css... 2024-10-22T00:46:13.460Z: Reading the content of file at assets/about-us.autostyle.css... 2024-10-22T00:46:13.462Z: Reading the content of file at assets/account.autojs.js... 2024-10-22T00:46:13.463Z: Reading the content of file at assets/account.autostyle.css... 2024-10-22T00:46:13.465Z: Reading the content of file at assets/back-in-stock.autostyle.css... 2024-10-22T00:46:13.465Z: Reading the content of file at assets/blog.autojs.js... 2024-10-22T00:46:13.466Z: Reading the content of file at assets/blog.autostyle.css... 2024-10-22T00:46:13.466Z: Reading the content of file at assets/cart.autojs.js... 2024-10-22T00:46:13.467Z: Reading the content of file at assets/checkmark.svg.liquid... 2024-10-22T00:46:13.468Z: Reading the content of file at assets/cart.autostyle.css... 2024-10-22T00:46:13.469Z: Reading the content of file at assets/collection.autojs.js... 2024-10-22T00:46:13.469Z: Reading the content of file at assets/collection.autostyle.css... 2024-10-22T00:46:13.469Z: Reading the content of file at assets/contact.autostyle.css... 2024-10-22T00:46:13.471Z: Reading the content of file at assets/cursor-zoom-in.svg.liquid... 2024-10-22T00:46:13.471Z: Reading the content of file at assets/es-module-shims.min.js... 2024-10-22T00:46:13.471Z: Reading the content of file at assets/global.autojs.js... 2024-10-22T00:46:13.472Z: Reading the content of file at assets/faq.autostyle.css... 2024-10-22T00:46:13.472Z: Reading the content of file at assets/global.autostyle.css... 2024-10-22T00:46:13.472Z: Reading the content of file at assets/glossary.autojs.js... 2024-10-22T00:46:13.472Z: Reading the content of file at assets/homepage.autojs.js... 2024-10-22T00:46:13.472Z: Reading the content of file at assets/homepage.autostyle.css... 2024-10-22T00:46:13.472Z: Reading the content of file at assets/jquery-3.7.1.min.js... 2024-10-22T00:46:13.472Z: Reading the content of file at assets/login.autostyle.css... 2024-10-22T00:46:13.472Z: Reading the content of file at assets/page-wishlist.autostyle.css... 2024-10-22T00:46:13.472Z: Reading the content of file at assets/page.autojs.js... 2024-10-22T00:46:13.472Z: Reading the content of file at assets/page.autostyle.css... 2024-10-22T00:46:13.472Z: Reading the content of file at assets/password-protected.autostyle.css... 2024-10-22T00:46:13.472Z: Reading the content of file at assets/photoswipe.min.js... 2024-10-22T00:46:13.474Z: Reading the content of file at assets/product.autojs.js... 2024-10-22T00:46:13.475Z: Reading the content of file at assets/product.autostyle.css... 2024-10-22T00:46:13.475Z: Reading the content of file at assets/register.autostyle.css... 2024-10-22T00:46:13.475Z: Reading the content of file at assets/search.autojs.js... 2024-10-22T00:46:13.475Z: Reading the content of file at assets/search.autostyle.css... 2024-10-22T00:46:13.475Z: Reading the content of file at assets/side-nav.autojs.js... 2024-10-22T00:46:13.475Z: Reading the content of file at assets/side-nav.autostyle.css... 2024-10-22T00:46:13.475Z: Reading the content of file at assets/stockists.autostyle.css... 2024-10-22T00:46:13.475Z: Reading the content of file at assets/theme.css... 2024-10-22T00:46:13.475Z: Reading the content of file at assets/theme.js... 2024-10-22T00:46:13.475Z: Reading the content of file at assets/vendor.min.js... 2024-10-22T00:46:13.475Z: Reading the content of file at assets/wishlist.autostyle.css... 2024-10-22T00:46:13.476Z: Reading the content of file at config/settings_schema.json... 2024-10-22T00:46:13.476Z: Reading the content of file at layout/theme.liquid... 2024-10-22T00:46:13.476Z: Reading the content of file at locales/en.default.schema.json... 2024-10-22T00:46:13.476Z: Reading the content of file at sections/announcement-bar.liquid... 2024-10-22T00:46:13.476Z: Reading the content of file at sections/apps.liquid... 2024-10-22T00:46:13.476Z: Reading the content of file at sections/before-after.liquid... 2024-10-22T00:46:13.476Z: Reading the content of file at sections/blog-posts.liquid... 2024-10-22T00:46:13.476Z: Reading the content of file at sections/collection-banner.liquid... 2024-10-22T00:46:13.476Z: Reading the content of file at sections/collection-list.liquid... 2024-10-22T00:46:13.477Z: Reading the content of file at sections/cart-drawer.liquid... 2024-10-22T00:46:13.479Z: Reading the content of file at sections/countdown-condensed.liquid... 2024-10-22T00:46:13.479Z: Reading the content of file at sections/faq.liquid... 2024-10-22T00:46:13.479Z: Reading the content of file at sections/featured-collections.liquid... 2024-10-22T00:46:13.479Z: Reading the content of file at sections/featured-product.liquid... 2024-10-22T00:46:13.479Z: Reading the content of file at sections/footer.liquid... 2024-10-22T00:46:13.479Z: Reading the content of file at sections/header.liquid... 2024-10-22T00:46:13.479Z: Reading the content of file at sections/image-with-text-block.liquid... 2024-10-22T00:46:13.479Z: Reading the content of file at sections/image-with-text-overlay.liquid... 2024-10-22T00:46:13.479Z: Reading the content of file at sections/image-with-text.liquid... 2024-10-22T00:46:13.479Z: Reading the content of file at sections/images-with-text-scroll.liquid... 2024-10-22T00:46:13.479Z: Reading the content of file at sections/logo-list.liquid... 2024-10-22T00:46:13.479Z: Reading the content of file at sections/main-article.liquid... 2024-10-22T00:46:13.479Z: Reading the content of file at sections/main-blog.liquid... 2024-10-22T00:46:13.479Z: Reading the content of file at sections/main-cart.liquid... 2024-10-22T00:46:13.480Z: Reading the content of file at sections/main-collection.liquid... 2024-10-22T00:46:13.480Z: Reading the content of file at sections/main-customers-account.liquid... 2024-10-22T00:46:13.480Z: Reading the content of file at sections/main-customers-activate-account.liquid... 2024-10-22T00:46:13.480Z: Reading the content of file at sections/main-customers-addresses.liquid... 2024-10-22T00:46:13.480Z: Reading the content of file at sections/main-customers-login.liquid... 2024-10-22T00:46:13.480Z: Reading the content of file at sections/main-customers-order.liquid... 2024-10-22T00:46:13.480Z: Reading the content of file at sections/main-customers-register.liquid... 2024-10-22T00:46:13.480Z: Reading the content of file at sections/custom-liquid.liquid... 2024-10-22T00:46:13.480Z: Reading the content of file at sections/contact.liquid... 2024-10-22T00:46:13.480Z: Reading the content of file at sections/main-customers-reset-password.liquid... 2024-10-22T00:46:13.480Z: Reading the content of file at sections/main-gift-card.liquid... 2024-10-22T00:46:13.480Z: Reading the content of file at sections/main-list-collections.liquid... 2024-10-22T00:46:13.480Z: Reading the content of file at sections/main-not-found.liquid... 2024-10-22T00:46:13.480Z: Reading the content of file at sections/main-page.liquid... 2024-10-22T00:46:13.481Z: Reading the content of file at sections/main-password.liquid... 2024-10-22T00:46:13.481Z: Reading the content of file at sections/main-product.liquid... 2024-10-22T00:46:13.481Z: Reading the content of file at sections/main-search.liquid... 2024-10-22T00:46:13.481Z: Reading the content of file at sections/media-grid.liquid... 2024-10-22T00:46:13.481Z: Reading the content of file at sections/multi-column.liquid... 2024-10-22T00:46:13.481Z: Reading the content of file at sections/countdown.liquid... 2024-10-22T00:46:13.481Z: Reading the content of file at sections/newsletter-popup.liquid... 2024-10-22T00:46:13.481Z: Reading the content of file at sections/newsletter.liquid... 2024-10-22T00:46:13.481Z: Reading the content of file at sections/predictive-search.liquid... 2024-10-22T00:46:13.481Z: Reading the content of file at sections/prev-next-blog-posts.liquid... 2024-10-22T00:46:13.481Z: Reading the content of file at sections/privacy-banner.liquid... 2024-10-22T00:46:13.481Z: Reading the content of file at sections/recently-viewed-products.liquid... 2024-10-22T00:46:13.481Z: Reading the content of file at sections/multiple-media-with-text.liquid... 2024-10-22T00:46:13.481Z: Reading the content of file at sections/related-products.liquid... 2024-10-22T00:46:13.482Z: Reading the content of file at sections/rich-text.liquid... 2024-10-22T00:46:13.482Z: Reading the content of file at sections/scrolling-content.liquid... 2024-10-22T00:46:13.482Z: Reading the content of file at sections/separator.liquid... 2024-10-22T00:46:13.482Z: Reading the content of file at sections/shop-the-look.liquid... 2024-10-22T00:46:13.482Z: Reading the content of file at sections/side-nav.liquid... 2024-10-22T00:46:13.482Z: Reading the content of file at sections/slideshow.liquid... 2024-10-22T00:46:13.482Z: Reading the content of file at sections/tabs.liquid... 2024-10-22T00:46:13.482Z: Reading the content of file at sections/testimonials.liquid... 2024-10-22T00:46:13.482Z: Reading the content of file at sections/text-with-icons.liquid... 2024-10-22T00:46:13.482Z: Reading the content of file at sections/timeline.liquid... 2024-10-22T00:46:13.482Z: Reading the content of file at sections/video.liquid... 2024-10-22T00:46:13.482Z: Reading the content of file at snippets/accordion.liquid... 2024-10-22T00:46:13.482Z: Reading the content of file at snippets/active-facets.liquid... 2024-10-22T00:46:13.482Z: Reading the content of file at snippets/address-form.liquid... 2024-10-22T00:46:13.483Z: Reading the content of file at snippets/banner.liquid... 2024-10-22T00:46:13.483Z: Reading the content of file at snippets/blog-post-card.liquid... 2024-10-22T00:46:13.483Z: Reading the content of file at snippets/button.liquid... 2024-10-22T00:46:13.483Z: Reading the content of file at snippets/buy-buttons.liquid... 2024-10-22T00:46:13.483Z: Reading the content of file at snippets/checkbox.liquid... 2024-10-22T00:46:13.483Z: Reading the content of file at snippets/complementary-products.liquid... 2024-10-22T00:46:13.483Z: Reading the content of file at snippets/css-variables.liquid... 2024-10-22T00:46:13.483Z: Reading the content of file at snippets/direction.liquid... 2024-10-22T00:46:13.483Z: Reading the content of file at snippets/facets.liquid... 2024-10-22T00:46:13.483Z: Reading the content of file at snippets/free-shipping-bar.liquid... 2024-10-22T00:46:13.483Z: Reading the content of file at snippets/header-search.liquid... 2024-10-22T00:46:13.483Z: Reading the content of file at snippets/header-sidebar.liquid... 2024-10-22T00:46:13.483Z: Reading the content of file at snippets/icon.liquid... 2024-10-22T00:46:13.483Z: Reading the content of file at snippets/input.liquid... 2024-10-22T00:46:13.484Z: Reading the content of file at snippets/inventory.liquid... 2024-10-22T00:46:13.484Z: Reading the content of file at snippets/js-variables.liquid... 2024-10-22T00:46:13.484Z: Reading the content of file at snippets/line-item.liquid... 2024-10-22T00:46:13.484Z: Reading the content of file at snippets/localization-selector.liquid... 2024-10-22T00:46:13.484Z: Reading the content of file at snippets/media.liquid... 2024-10-22T00:46:13.484Z: Reading the content of file at snippets/mega-menu-images.liquid... 2024-10-22T00:46:13.484Z: Reading the content of file at snippets/mega-menu.liquid... 2024-10-22T00:46:13.484Z: Reading the content of file at snippets/microdata-schema.liquid... 2024-10-22T00:46:13.484Z: Reading the content of file at snippets/option-value.liquid... 2024-10-22T00:46:13.484Z: Reading the content of file at snippets/pagination.liquid... 2024-10-22T00:46:13.484Z: Reading the content of file at snippets/page-map.liquid... 2024-10-22T00:46:13.484Z: Reading the content of file at snippets/pickup-availability.liquid... 2024-10-22T00:46:13.484Z: Reading the content of file at snippets/predictive-search-result-item.liquid... 2024-10-22T00:46:13.484Z: Reading the content of file at snippets/price-list.liquid... 2024-10-22T00:46:13.484Z: Reading the content of file at snippets/price-range.liquid... 2024-10-22T00:46:13.485Z: Reading the content of file at snippets/product-badges.liquid... 2024-10-22T00:46:13.485Z: Reading the content of file at snippets/product-card-horizontal.liquid... 2024-10-22T00:46:13.485Z: Reading the content of file at snippets/product-card-placeholder.liquid... 2024-10-22T00:46:13.485Z: Reading the content of file at snippets/product-card.liquid... 2024-10-22T00:46:13.485Z: Reading the content of file at snippets/product-gallery.liquid... 2024-10-22T00:46:13.485Z: Reading the content of file at snippets/product-info.liquid... 2024-10-22T00:46:13.485Z: Reading the content of file at snippets/product-quick-buy.liquid... 2024-10-22T00:46:13.485Z: Reading the content of file at snippets/product-rating.liquid... 2024-10-22T00:46:13.485Z: Reading the content of file at snippets/quantity-selector.liquid... 2024-10-22T00:46:13.485Z: Reading the content of file at snippets/section-header.liquid... 2024-10-22T00:46:13.485Z: Reading the content of file at snippets/select.liquid... 2024-10-22T00:46:13.485Z: Reading the content of file at snippets/shadow-dom-templates.liquid... 2024-10-22T00:46:13.485Z: Reading the content of file at snippets/share-buttons.liquid... 2024-10-22T00:46:13.485Z: Reading the content of file at snippets/shipping-estimator.liquid... 2024-10-22T00:46:13.486Z: Reading the content of file at snippets/social-media.liquid... 2024-10-22T00:46:13.486Z: Reading the content of file at snippets/social-meta-tags.liquid... 2024-10-22T00:46:13.486Z: Reading the content of file at snippets/surface.liquid... 2024-10-22T00:46:13.486Z: Reading the content of file at snippets/variant-picker.liquid... 2024-10-22T00:46:13.486Z: Reading the content of file at snippets/vendor.liquid... 2024-10-22T00:46:13.486Z: Reading the content of file at templates/gift_card.liquid... 2024-10-22T00:46:13.692Z: Request to https://xxxxxxxxxxxxx.myshopify.com/ completed in 342 ms With response headers:
2024-10-22T00:46:13.694Z: Ensuring that the user is authenticated with the Theme API with the following scopes: []
2024-10-22T00:46:14.184Z: Request to https://theme-kit-access.shopifyapps.com/cli/sfr?preview_theme_id=129552679021&_fd=0&pb=0 completed in 487 ms With response headers:
2024-10-22T00:46:14.728Z: Request to https://theme-kit-access.shopifyapps.com/cli/admin/api/unstable/themes/129552679021/assets.json?fields=key%2Cchecksum completed in 539 ms With response headers:
2024-10-22T00:46:14.740Z: Ignoring theme file assets/account.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.744Z: Ignoring theme file assets/account.autojs.js via .shopifyignore... 2024-10-22T00:46:14.748Z: Ignoring theme file assets/404.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.751Z: Ignoring theme file assets/about-us.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.753Z: Ignoring theme file assets/back-in-stock.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.757Z: Ignoring theme file assets/blog.autojs.js via .shopifyignore... 2024-10-22T00:46:14.757Z: Ignoring theme file assets/cart.autojs.js via .shopifyignore... 2024-10-22T00:46:14.757Z: Ignoring theme file assets/cart.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.757Z: Ignoring theme file assets/collection.autojs.js via .shopifyignore... 2024-10-22T00:46:14.757Z: Ignoring theme file assets/blog.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.758Z: Ignoring theme file assets/collection.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.758Z: Ignoring theme file assets/checkmark.svg.liquid via .shopifyignore... 2024-10-22T00:46:14.758Z: Ignoring theme file assets/global.autojs.js via .shopifyignore... 2024-10-22T00:46:14.759Z: Ignoring theme file assets/es-module-shims.min.js via .shopifyignore... 2024-10-22T00:46:14.764Z: Ignoring theme file assets/contact.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.765Z: Ignoring theme file assets/glossary.autojs.js via .shopifyignore... 2024-10-22T00:46:14.765Z: Ignoring theme file assets/cursor-zoom-in.svg.liquid via .shopifyignore... 2024-10-22T00:46:14.765Z: Ignoring theme file assets/homepage.autojs.js via .shopifyignore... 2024-10-22T00:46:14.765Z: Ignoring theme file assets/global.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.766Z: Ignoring theme file assets/homepage.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.766Z: Ignoring theme file assets/login.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.766Z: Ignoring theme file assets/faq.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.766Z: Ignoring theme file assets/page-wishlist.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.766Z: Ignoring theme file assets/page.autojs.js via .shopifyignore... 2024-10-22T00:46:14.766Z: Ignoring theme file assets/page.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.767Z: Ignoring theme file assets/product.autojs.js via .shopifyignore... 2024-10-22T00:46:14.767Z: Ignoring theme file assets/password-protected.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.767Z: Ignoring theme file assets/jquery-3.7.1.min.js via .shopifyignore... 2024-10-22T00:46:14.767Z: Ignoring theme file assets/photoswipe.min.js via .shopifyignore... 2024-10-22T00:46:14.767Z: Ignoring theme file assets/search.autojs.js via .shopifyignore... 2024-10-22T00:46:14.768Z: Ignoring theme file assets/register.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.768Z: Ignoring theme file assets/search.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.768Z: Ignoring theme file assets/side-nav.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.768Z: Ignoring theme file assets/side-nav.autojs.js via .shopifyignore... 2024-10-22T00:46:14.768Z: Ignoring theme file assets/product.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.768Z: Ignoring theme file assets/stockists.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.769Z: Ignoring theme file assets/vendor.min.js via .shopifyignore... 2024-10-22T00:46:14.769Z: Ignoring theme file assets/theme.css via .shopifyignore... 2024-10-22T00:46:14.769Z: Ignoring theme file assets/wishlist.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.769Z: Ignoring theme file layout/theme.liquid via .shopifyignore... 2024-10-22T00:46:14.769Z: Ignoring theme file sections/announcement-bar.liquid via .shopifyignore... 2024-10-22T00:46:14.769Z: Ignoring theme file locales/en.default.schema.json via .shopifyignore... 2024-10-22T00:46:14.770Z: Ignoring theme file assets/theme.js via .shopifyignore... 2024-10-22T00:46:14.770Z: Ignoring theme file sections/apps.liquid via .shopifyignore... 2024-10-22T00:46:14.770Z: Ignoring theme file config/settings_schema.json via .shopifyignore... 2024-10-22T00:46:14.770Z: Ignoring theme file sections/before-after.liquid via .shopifyignore... 2024-10-22T00:46:14.770Z: Ignoring theme file sections/collection-banner.liquid via .shopifyignore... 2024-10-22T00:46:14.770Z: Ignoring theme file sections/blog-posts.liquid via .shopifyignore... 2024-10-22T00:46:14.771Z: Ignoring theme file sections/collection-list.liquid via .shopifyignore... 2024-10-22T00:46:14.771Z: Ignoring theme file sections/cart-drawer.liquid via .shopifyignore... 2024-10-22T00:46:14.771Z: Ignoring theme file sections/featured-collections.liquid via .shopifyignore... 2024-10-22T00:46:14.771Z: Ignoring theme file sections/faq.liquid via .shopifyignore... 2024-10-22T00:46:14.771Z: Ignoring theme file sections/countdown-condensed.liquid via .shopifyignore... 2024-10-22T00:46:14.771Z: Ignoring theme file sections/featured-product.liquid via .shopifyignore... 2024-10-22T00:46:14.772Z: Ignoring theme file sections/footer.liquid via .shopifyignore... 2024-10-22T00:46:14.772Z: Ignoring theme file sections/image-with-text-block.liquid via .shopifyignore... 2024-10-22T00:46:14.772Z: Ignoring theme file sections/image-with-text.liquid via .shopifyignore... 2024-10-22T00:46:14.772Z: Ignoring theme file sections/header.liquid via .shopifyignore... 2024-10-22T00:46:14.772Z: Ignoring theme file sections/logo-list.liquid via .shopifyignore... 2024-10-22T00:46:14.772Z: Ignoring theme file sections/image-with-text-overlay.liquid via .shopifyignore... 2024-10-22T00:46:14.772Z: Ignoring theme file sections/images-with-text-scroll.liquid via .shopifyignore... 2024-10-22T00:46:14.773Z: Ignoring theme file sections/main-blog.liquid via .shopifyignore... 2024-10-22T00:46:14.773Z: Ignoring theme file sections/main-article.liquid via .shopifyignore... 2024-10-22T00:46:14.773Z: Ignoring theme file sections/main-cart.liquid via .shopifyignore... 2024-10-22T00:46:14.773Z: Ignoring theme file sections/main-collection.liquid via .shopifyignore... 2024-10-22T00:46:14.773Z: Ignoring theme file sections/main-customers-activate-account.liquid via .shopifyignore... 2024-10-22T00:46:14.773Z: Ignoring theme file sections/main-customers-account.liquid via .shopifyignore... 2024-10-22T00:46:14.774Z: Ignoring theme file sections/main-customers-login.liquid via .shopifyignore... 2024-10-22T00:46:14.774Z: Ignoring theme file sections/main-customers-register.liquid via .shopifyignore... 2024-10-22T00:46:14.774Z: Ignoring theme file sections/main-customers-addresses.liquid via .shopifyignore... 2024-10-22T00:46:14.774Z: Ignoring theme file sections/custom-liquid.liquid via .shopifyignore... 2024-10-22T00:46:14.774Z: Ignoring theme file sections/contact.liquid via .shopifyignore... 2024-10-22T00:46:14.775Z: Ignoring theme file sections/main-customers-reset-password.liquid via .shopifyignore... 2024-10-22T00:46:14.775Z: Ignoring theme file sections/main-customers-order.liquid via .shopifyignore... 2024-10-22T00:46:14.775Z: Ignoring theme file sections/main-list-collections.liquid via .shopifyignore... 2024-10-22T00:46:14.775Z: Ignoring theme file sections/main-gift-card.liquid via .shopifyignore... 2024-10-22T00:46:14.776Z: Ignoring theme file sections/main-password.liquid via .shopifyignore... 2024-10-22T00:46:14.776Z: Ignoring theme file sections/main-not-found.liquid via .shopifyignore... 2024-10-22T00:46:14.776Z: Ignoring theme file sections/main-page.liquid via .shopifyignore... 2024-10-22T00:46:14.776Z: Ignoring theme file sections/main-product.liquid via .shopifyignore... 2024-10-22T00:46:14.777Z: Ignoring theme file sections/media-grid.liquid via .shopifyignore... 2024-10-22T00:46:14.777Z: Ignoring theme file sections/countdown.liquid via .shopifyignore... 2024-10-22T00:46:14.777Z: Ignoring theme file sections/main-search.liquid via .shopifyignore... 2024-10-22T00:46:14.777Z: Ignoring theme file sections/multi-column.liquid via .shopifyignore... 2024-10-22T00:46:14.777Z: Ignoring theme file sections/newsletter.liquid via .shopifyignore... 2024-10-22T00:46:14.777Z: Ignoring theme file sections/prev-next-blog-posts.liquid via .shopifyignore... 2024-10-22T00:46:14.778Z: Ignoring theme file sections/newsletter-popup.liquid via .shopifyignore... 2024-10-22T00:46:14.778Z: Ignoring theme file sections/privacy-banner.liquid via .shopifyignore... 2024-10-22T00:46:14.778Z: Ignoring theme file sections/predictive-search.liquid via .shopifyignore... 2024-10-22T00:46:14.781Z: Ignoring theme file sections/recently-viewed-products.liquid via .shopifyignore... 2024-10-22T00:46:14.781Z: Ignoring theme file sections/scrolling-content.liquid via .shopifyignore... 2024-10-22T00:46:14.781Z: Ignoring theme file sections/multiple-media-with-text.liquid via .shopifyignore... 2024-10-22T00:46:14.782Z: Ignoring theme file sections/separator.liquid via .shopifyignore... 2024-10-22T00:46:14.782Z: Ignoring theme file sections/rich-text.liquid via .shopifyignore... 2024-10-22T00:46:14.782Z: Ignoring theme file sections/shop-the-look.liquid via .shopifyignore... 2024-10-22T00:46:14.782Z: Ignoring theme file sections/tabs.liquid via .shopifyignore... 2024-10-22T00:46:14.782Z: Ignoring theme file sections/related-products.liquid via .shopifyignore... 2024-10-22T00:46:14.782Z: Ignoring theme file sections/slideshow.liquid via .shopifyignore... 2024-10-22T00:46:14.782Z: Ignoring theme file sections/testimonials.liquid via .shopifyignore... 2024-10-22T00:46:14.783Z: Ignoring theme file sections/side-nav.liquid via .shopifyignore... 2024-10-22T00:46:14.783Z: Ignoring theme file sections/timeline.liquid via .shopifyignore... 2024-10-22T00:46:14.783Z: Ignoring theme file sections/text-with-icons.liquid via .shopifyignore... 2024-10-22T00:46:14.783Z: Ignoring theme file snippets/accordion.liquid via .shopifyignore... 2024-10-22T00:46:14.783Z: Ignoring theme file snippets/active-facets.liquid via .shopifyignore... 2024-10-22T00:46:14.783Z: Ignoring theme file snippets/banner.liquid via .shopifyignore... 2024-10-22T00:46:14.783Z: Ignoring theme file snippets/blog-post-card.liquid via .shopifyignore... 2024-10-22T00:46:14.784Z: Ignoring theme file snippets/button.liquid via .shopifyignore... 2024-10-22T00:46:14.784Z: Ignoring theme file snippets/address-form.liquid via .shopifyignore... 2024-10-22T00:46:14.784Z: Ignoring theme file snippets/buy-buttons.liquid via .shopifyignore... 2024-10-22T00:46:14.784Z: Ignoring theme file snippets/checkbox.liquid via .shopifyignore... 2024-10-22T00:46:14.784Z: Ignoring theme file snippets/direction.liquid via .shopifyignore... 2024-10-22T00:46:14.784Z: Ignoring theme file sections/video.liquid via .shopifyignore... 2024-10-22T00:46:14.784Z: Ignoring theme file snippets/complementary-products.liquid via .shopifyignore... 2024-10-22T00:46:14.785Z: Ignoring theme file snippets/free-shipping-bar.liquid via .shopifyignore... 2024-10-22T00:46:14.785Z: Ignoring theme file snippets/facets.liquid via .shopifyignore... 2024-10-22T00:46:14.785Z: Ignoring theme file snippets/css-variables.liquid via .shopifyignore... 2024-10-22T00:46:14.785Z: Ignoring theme file snippets/header-search.liquid via .shopifyignore... 2024-10-22T00:46:14.785Z: Ignoring theme file snippets/inventory.liquid via .shopifyignore... 2024-10-22T00:46:14.785Z: Ignoring theme file snippets/icon.liquid via .shopifyignore... 2024-10-22T00:46:14.785Z: Ignoring theme file snippets/input.liquid via .shopifyignore... 2024-10-22T00:46:14.786Z: Ignoring theme file snippets/js-variables.liquid via .shopifyignore... 2024-10-22T00:46:14.786Z: Ignoring theme file snippets/header-sidebar.liquid via .shopifyignore... 2024-10-22T00:46:14.786Z: Ignoring theme file snippets/line-item.liquid via .shopifyignore... 2024-10-22T00:46:14.786Z: Ignoring theme file snippets/media.liquid via .shopifyignore... 2024-10-22T00:46:14.786Z: Ignoring theme file snippets/mega-menu-images.liquid via .shopifyignore... 2024-10-22T00:46:14.786Z: Ignoring theme file snippets/mega-menu.liquid via .shopifyignore... 2024-10-22T00:46:14.786Z: Ignoring theme file snippets/microdata-schema.liquid via .shopifyignore... 2024-10-22T00:46:14.787Z: Ignoring theme file snippets/localization-selector.liquid via .shopifyignore... 2024-10-22T00:46:14.787Z: Ignoring theme file snippets/pagination.liquid via .shopifyignore... 2024-10-22T00:46:14.787Z: Ignoring theme file snippets/option-value.liquid via .shopifyignore... 2024-10-22T00:46:14.787Z: Ignoring theme file snippets/pickup-availability.liquid via .shopifyignore... 2024-10-22T00:46:14.787Z: Ignoring theme file snippets/page-map.liquid via .shopifyignore... 2024-10-22T00:46:14.787Z: Ignoring theme file snippets/predictive-search-result-item.liquid via .shopifyignore... 2024-10-22T00:46:14.787Z: Ignoring theme file snippets/price-list.liquid via .shopifyignore... 2024-10-22T00:46:14.788Z: Ignoring theme file snippets/product-badges.liquid via .shopifyignore... 2024-10-22T00:46:14.788Z: Ignoring theme file snippets/product-card-horizontal.liquid via .shopifyignore... 2024-10-22T00:46:14.788Z: Ignoring theme file snippets/price-range.liquid via .shopifyignore... 2024-10-22T00:46:14.788Z: Ignoring theme file snippets/product-card-placeholder.liquid via .shopifyignore... 2024-10-22T00:46:14.788Z: Ignoring theme file snippets/product-gallery.liquid via .shopifyignore... 2024-10-22T00:46:14.788Z: Ignoring theme file snippets/product-rating.liquid via .shopifyignore... 2024-10-22T00:46:14.789Z: Ignoring theme file snippets/product-quick-buy.liquid via .shopifyignore... 2024-10-22T00:46:14.789Z: Ignoring theme file snippets/section-header.liquid via .shopifyignore... 2024-10-22T00:46:14.789Z: Ignoring theme file snippets/select.liquid via .shopifyignore... 2024-10-22T00:46:14.789Z: Ignoring theme file snippets/product-card.liquid via .shopifyignore... 2024-10-22T00:46:14.789Z: Ignoring theme file snippets/quantity-selector.liquid via .shopifyignore... 2024-10-22T00:46:14.789Z: Ignoring theme file snippets/product-info.liquid via .shopifyignore... 2024-10-22T00:46:14.790Z: Ignoring theme file snippets/shadow-dom-templates.liquid via .shopifyignore... 2024-10-22T00:46:14.790Z: Ignoring theme file snippets/shipping-estimator.liquid via .shopifyignore... 2024-10-22T00:46:14.797Z: Ignoring theme file snippets/social-media.liquid via .shopifyignore... 2024-10-22T00:46:14.798Z: Ignoring theme file snippets/share-buttons.liquid via .shopifyignore... 2024-10-22T00:46:14.799Z: Ignoring theme file snippets/social-meta-tags.liquid via .shopifyignore... 2024-10-22T00:46:14.799Z: Ignoring theme file snippets/surface.liquid via .shopifyignore... 2024-10-22T00:46:14.799Z: Ignoring theme file snippets/vendor.liquid via .shopifyignore... 2024-10-22T00:46:14.799Z: Ignoring theme file templates/gift_card.liquid via .shopifyignore... 2024-10-22T00:46:14.799Z: Ignoring theme file snippets/variant-picker.liquid via .shopifyignore... 2024-10-22T00:46:14.799Z: Files to be uploaded:
2024-10-22T00:46:14.800Z: Ignoring theme file assets/404.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.801Z: Ignoring theme file assets/about-us.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.801Z: Ignoring theme file assets/account.autojs.js via .shopifyignore... 2024-10-22T00:46:14.801Z: Ignoring theme file assets/account.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.801Z: Ignoring theme file assets/back-in-stock.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.801Z: Ignoring theme file assets/blog.autojs.js via .shopifyignore... 2024-10-22T00:46:14.801Z: Ignoring theme file assets/blog.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.802Z: Ignoring theme file assets/cart.autojs.js via .shopifyignore... 2024-10-22T00:46:14.802Z: Ignoring theme file assets/cart.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.802Z: Ignoring theme file assets/checkmark.svg.liquid via .shopifyignore... 2024-10-22T00:46:14.802Z: Ignoring theme file assets/collection.autojs.js via .shopifyignore... 2024-10-22T00:46:14.802Z: Ignoring theme file assets/collection.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.802Z: Ignoring theme file assets/contact.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.802Z: Ignoring theme file assets/cursor-zoom-in.svg.liquid via .shopifyignore... 2024-10-22T00:46:14.805Z: Ignoring theme file assets/es-module-shims.min.js via .shopifyignore... 2024-10-22T00:46:14.806Z: Ignoring theme file assets/faq.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.806Z: Ignoring theme file assets/global.autojs.js via .shopifyignore... 2024-10-22T00:46:14.806Z: Ignoring theme file assets/global.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.806Z: Ignoring theme file assets/glossary.autojs.js via .shopifyignore... 2024-10-22T00:46:14.806Z: Ignoring theme file assets/homepage.autojs.js via .shopifyignore... 2024-10-22T00:46:14.807Z: Ignoring theme file assets/homepage.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.807Z: Ignoring theme file assets/jquery-3.7.1.min.js via .shopifyignore... 2024-10-22T00:46:14.807Z: Ignoring theme file assets/login.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.807Z: Ignoring theme file assets/page-wishlist.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.807Z: Ignoring theme file assets/page.autojs.js via .shopifyignore... 2024-10-22T00:46:14.807Z: Ignoring theme file assets/page.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.807Z: Ignoring theme file assets/password-protected.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.808Z: Ignoring theme file assets/photoswipe.min.js via .shopifyignore... 2024-10-22T00:46:14.808Z: Ignoring theme file assets/product.autojs.js via .shopifyignore... 2024-10-22T00:46:14.808Z: Ignoring theme file assets/product.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.808Z: Ignoring theme file assets/register.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.808Z: Ignoring theme file assets/search.autojs.js via .shopifyignore... 2024-10-22T00:46:14.809Z: Ignoring theme file assets/search.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.809Z: Ignoring theme file assets/side-nav.autojs.js via .shopifyignore... 2024-10-22T00:46:14.809Z: Ignoring theme file assets/side-nav.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.809Z: Ignoring theme file assets/stockists.autostyle.css via .shopifyignore... 2024-10-22T00:46:14.809Z: Ignoring theme file assets/theme.css via .shopifyignore... 2024-10-22T00:46:14.809Z: Ignoring theme file assets/theme.js via .shopifyignore... 2024-10-22T00:46:14.810Z: Ignoring theme file assets/vendor.min.js via .shopifyignore... 2024-10-22T00:46:14.810Z: Ignoring theme file config/settings_data.json via .shopifyignore... 2024-10-22T00:46:14.810Z: Ignoring theme file config/settings_schema.json via .shopifyignore... 2024-10-22T00:46:14.810Z: Ignoring theme file layout/password.liquid via .shopifyignore... 2024-10-22T00:46:14.810Z: Ignoring theme file layout/theme.liquid via .shopifyignore... 2024-10-22T00:46:14.810Z: Ignoring theme file locales/ar.json via .shopifyignore... 2024-10-22T00:46:14.810Z: Ignoring theme file locales/cs.json via .shopifyignore... 2024-10-22T00:46:14.811Z: Ignoring theme file locales/da.json via .shopifyignore... 2024-10-22T00:46:14.811Z: Ignoring theme file locales/de.json via .shopifyignore... 2024-10-22T00:46:14.811Z: Ignoring theme file locales/el.json via .shopifyignore... 2024-10-22T00:46:14.811Z: Ignoring theme file locales/en.default.json via .shopifyignore... 2024-10-22T00:46:14.811Z: Ignoring theme file locales/en.default.schema.json via .shopifyignore... 2024-10-22T00:46:14.811Z: Ignoring theme file locales/es.json via .shopifyignore... 2024-10-22T00:46:14.811Z: Ignoring theme file locales/fi.json via .shopifyignore... 2024-10-22T00:46:14.812Z: Ignoring theme file locales/fr.json via .shopifyignore... 2024-10-22T00:46:14.812Z: Ignoring theme file locales/he.json via .shopifyignore... 2024-10-22T00:46:14.812Z: Ignoring theme file locales/it.json via .shopifyignore... 2024-10-22T00:46:14.812Z: Ignoring theme file locales/ja.json via .shopifyignore... 2024-10-22T00:46:14.817Z: Ignoring theme file locales/ko.json via .shopifyignore... 2024-10-22T00:46:14.817Z: Ignoring theme file locales/lt.json via .shopifyignore... 2024-10-22T00:46:14.817Z: Ignoring theme file locales/lv.json via .shopifyignore... 2024-10-22T00:46:14.817Z: Ignoring theme file locales/nb.json via .shopifyignore... 2024-10-22T00:46:14.818Z: Ignoring theme file locales/nl.json via .shopifyignore... 2024-10-22T00:46:14.818Z: Ignoring theme file locales/pl.json via .shopifyignore... 2024-10-22T00:46:14.818Z: Ignoring theme file locales/pt-BR.json via .shopifyignore... 2024-10-22T00:46:14.818Z: Ignoring theme file locales/ro.json via .shopifyignore... 2024-10-22T00:46:14.818Z: Ignoring theme file locales/ru.json via .shopifyignore... 2024-10-22T00:46:14.818Z: Ignoring theme file locales/sk.json via .shopifyignore... 2024-10-22T00:46:14.818Z: Ignoring theme file locales/sl.json via .shopifyignore... 2024-10-22T00:46:14.818Z: Ignoring theme file locales/sv.json via .shopifyignore... 2024-10-22T00:46:14.819Z: Ignoring theme file locales/tr.json via .shopifyignore... 2024-10-22T00:46:14.819Z: Ignoring theme file locales/uk.json via .shopifyignore... 2024-10-22T00:46:14.819Z: Ignoring theme file locales/zh-CN.json via .shopifyignore... 2024-10-22T00:46:14.819Z: Ignoring theme file locales/zh-TW.json via .shopifyignore... 2024-10-22T00:46:14.819Z: Ignoring theme file sections/announcement-bar.liquid via .shopifyignore... 2024-10-22T00:46:14.819Z: Ignoring theme file sections/apps.liquid via .shopifyignore... 2024-10-22T00:46:14.819Z: Ignoring theme file sections/before-after.liquid via .shopifyignore... 2024-10-22T00:46:14.820Z: Ignoring theme file sections/blog-posts.liquid via .shopifyignore... 2024-10-22T00:46:14.820Z: Ignoring theme file sections/cart-drawer.liquid via .shopifyignore... 2024-10-22T00:46:14.820Z: Ignoring theme file sections/collection-banner.liquid via .shopifyignore... 2024-10-22T00:46:14.820Z: Ignoring theme file sections/collection-list.liquid via .shopifyignore... 2024-10-22T00:46:14.820Z: Ignoring theme file sections/contact.liquid via .shopifyignore... 2024-10-22T00:46:14.820Z: Ignoring theme file sections/countdown-condensed.liquid via .shopifyignore... 2024-10-22T00:46:14.821Z: Ignoring theme file sections/countdown.liquid via .shopifyignore... 2024-10-22T00:46:14.821Z: Ignoring theme file sections/custom-liquid.liquid via .shopifyignore... 2024-10-22T00:46:14.821Z: Ignoring theme file sections/faq.liquid via .shopifyignore... 2024-10-22T00:46:14.821Z: Ignoring theme file sections/featured-collections.liquid via .shopifyignore... 2024-10-22T00:46:14.821Z: Ignoring theme file sections/featured-product.liquid via .shopifyignore... 2024-10-22T00:46:14.821Z: Ignoring theme file sections/footer-group.json via .shopifyignore... 2024-10-22T00:46:14.821Z: Ignoring theme file sections/footer.liquid via .shopifyignore... 2024-10-22T00:46:14.822Z: Ignoring theme file sections/header-group.json via .shopifyignore... 2024-10-22T00:46:14.822Z: Ignoring theme file sections/header.liquid via .shopifyignore... 2024-10-22T00:46:14.822Z: Ignoring theme file sections/image-with-text-block.liquid via .shopifyignore... 2024-10-22T00:46:14.822Z: Ignoring theme file sections/image-with-text-overlay.liquid via .shopifyignore... 2024-10-22T00:46:14.822Z: Ignoring theme file sections/image-with-text.liquid via .shopifyignore... 2024-10-22T00:46:14.822Z: Ignoring theme file sections/images-with-text-scroll.liquid via .shopifyignore... 2024-10-22T00:46:14.822Z: Ignoring theme file sections/logo-list.liquid via .shopifyignore... 2024-10-22T00:46:14.826Z: Ignoring theme file sections/main-article.liquid via .shopifyignore... 2024-10-22T00:46:14.826Z: Ignoring theme file sections/main-blog.liquid via .shopifyignore... 2024-10-22T00:46:14.827Z: Ignoring theme file sections/main-cart.liquid via .shopifyignore... 2024-10-22T00:46:14.827Z: Ignoring theme file sections/main-collection.liquid via .shopifyignore... 2024-10-22T00:46:14.827Z: Ignoring theme file sections/main-customers-account.liquid via .shopifyignore... 2024-10-22T00:46:14.827Z: Ignoring theme file sections/main-customers-activate-account.liquid via .shopifyignore... 2024-10-22T00:46:14.827Z: Ignoring theme file sections/main-customers-addresses.liquid via .shopifyignore... 2024-10-22T00:46:14.828Z: Ignoring theme file sections/main-customers-login.liquid via .shopifyignore... 2024-10-22T00:46:14.828Z: Ignoring theme file sections/main-customers-order.liquid via .shopifyignore... 2024-10-22T00:46:14.828Z: Ignoring theme file sections/main-customers-register.liquid via .shopifyignore... 2024-10-22T00:46:14.828Z: Ignoring theme file sections/main-customers-reset-password.liquid via .shopifyignore... 2024-10-22T00:46:14.828Z: Ignoring theme file sections/main-gift-card.liquid via .shopifyignore... 2024-10-22T00:46:14.828Z: Ignoring theme file sections/main-list-collections.liquid via .shopifyignore... 2024-10-22T00:46:14.828Z: Ignoring theme file sections/main-not-found.liquid via .shopifyignore... 2024-10-22T00:46:14.829Z: Ignoring theme file sections/main-page.liquid via .shopifyignore... 2024-10-22T00:46:14.829Z: Ignoring theme file sections/main-password.liquid via .shopifyignore... 2024-10-22T00:46:14.829Z: Ignoring theme file sections/main-product.liquid via .shopifyignore... 2024-10-22T00:46:14.829Z: Ignoring theme file sections/main-search.liquid via .shopifyignore... 2024-10-22T00:46:14.829Z: Ignoring theme file sections/media-grid.liquid via .shopifyignore... 2024-10-22T00:46:14.829Z: Ignoring theme file sections/multi-column.liquid via .shopifyignore... 2024-10-22T00:46:14.829Z: Ignoring theme file sections/multiple-media-with-text.liquid via .shopifyignore... 2024-10-22T00:46:14.829Z: Ignoring theme file sections/newsletter-popup.liquid via .shopifyignore... 2024-10-22T00:46:14.830Z: Ignoring theme file sections/newsletter.liquid via .shopifyignore... 2024-10-22T00:46:14.830Z: Ignoring theme file sections/overlay-group.json via .shopifyignore... 2024-10-22T00:46:14.830Z: Ignoring theme file sections/predictive-search.liquid via .shopifyignore... 2024-10-22T00:46:14.834Z: Ignoring theme file sections/prev-next-blog-posts.liquid via .shopifyignore... 2024-10-22T00:46:14.834Z: Ignoring theme file sections/privacy-banner.liquid via .shopifyignore... 2024-10-22T00:46:14.834Z: Ignoring theme file sections/recently-viewed-products.liquid via .shopifyignore... 2024-10-22T00:46:14.834Z: Ignoring theme file sections/related-products.liquid via .shopifyignore... 2024-10-22T00:46:14.835Z: Ignoring theme file sections/rich-text.liquid via .shopifyignore... 2024-10-22T00:46:14.835Z: Ignoring theme file sections/scrolling-content.liquid via .shopifyignore... 2024-10-22T00:46:14.835Z: Ignoring theme file sections/separator.liquid via .shopifyignore... 2024-10-22T00:46:14.835Z: Ignoring theme file sections/shop-the-look.liquid via .shopifyignore... 2024-10-22T00:46:14.835Z: Ignoring theme file sections/side-nav.liquid via .shopifyignore... 2024-10-22T00:46:14.835Z: Ignoring theme file sections/slideshow.liquid via .shopifyignore... 2024-10-22T00:46:14.835Z: Ignoring theme file sections/tabs.liquid via .shopifyignore... 2024-10-22T00:46:14.836Z: Ignoring theme file sections/testimonials.liquid via .shopifyignore... 2024-10-22T00:46:14.836Z: Ignoring theme file sections/text-with-icons.liquid via .shopifyignore... 2024-10-22T00:46:14.836Z: Ignoring theme file sections/timeline.liquid via .shopifyignore... 2024-10-22T00:46:14.836Z: Ignoring theme file sections/video.liquid via .shopifyignore... 2024-10-22T00:46:14.836Z: Ignoring theme file snippets/accordion.liquid via .shopifyignore... 2024-10-22T00:46:14.836Z: Ignoring theme file snippets/active-facets.liquid via .shopifyignore... 2024-10-22T00:46:14.836Z: Ignoring theme file snippets/address-form.liquid via .shopifyignore... 2024-10-22T00:46:14.836Z: Ignoring theme file snippets/banner.liquid via .shopifyignore... 2024-10-22T00:46:14.836Z: Ignoring theme file snippets/blog-post-card.liquid via .shopifyignore... 2024-10-22T00:46:14.837Z: Ignoring theme file snippets/button.liquid via .shopifyignore... 2024-10-22T00:46:14.837Z: Ignoring theme file snippets/buy-buttons.liquid via .shopifyignore... 2024-10-22T00:46:14.837Z: Ignoring theme file snippets/checkbox.liquid via .shopifyignore... 2024-10-22T00:46:14.837Z: Ignoring theme file snippets/complementary-products.liquid via .shopifyignore... 2024-10-22T00:46:14.837Z: Ignoring theme file snippets/css-variables.liquid via .shopifyignore... 2024-10-22T00:46:14.837Z: Ignoring theme file snippets/direction.liquid via .shopifyignore... 2024-10-22T00:46:14.837Z: Ignoring theme file snippets/facets.liquid via .shopifyignore... 2024-10-22T00:46:14.837Z: Ignoring theme file snippets/free-shipping-bar.liquid via .shopifyignore... 2024-10-22T00:46:14.838Z: Ignoring theme file snippets/header-search.liquid via .shopifyignore... 2024-10-22T00:46:14.838Z: Ignoring theme file snippets/header-sidebar.liquid via .shopifyignore... 2024-10-22T00:46:14.838Z: Ignoring theme file snippets/icon.liquid via .shopifyignore... 2024-10-22T00:46:14.838Z: Ignoring theme file snippets/input.liquid via .shopifyignore... 2024-10-22T00:46:14.838Z: Ignoring theme file snippets/inventory.liquid via .shopifyignore... 2024-10-22T00:46:14.838Z: Ignoring theme file snippets/js-variables.liquid via .shopifyignore... 2024-10-22T00:46:14.838Z: Ignoring theme file snippets/line-item.liquid via .shopifyignore... 2024-10-22T00:46:14.838Z: Ignoring theme file snippets/localization-selector.liquid via .shopifyignore... 2024-10-22T00:46:14.839Z: Ignoring theme file snippets/media.liquid via .shopifyignore... 2024-10-22T00:46:14.839Z: Ignoring theme file snippets/mega-menu-images.liquid via .shopifyignore... 2024-10-22T00:46:14.839Z: Ignoring theme file snippets/mega-menu.liquid via .shopifyignore... 2024-10-22T00:46:14.839Z: Ignoring theme file snippets/microdata-schema.liquid via .shopifyignore... 2024-10-22T00:46:14.839Z: Ignoring theme file snippets/option-value.liquid via .shopifyignore... 2024-10-22T00:46:14.839Z: Ignoring theme file snippets/page-map.liquid via .shopifyignore... 2024-10-22T00:46:14.842Z: Ignoring theme file snippets/pagination.liquid via .shopifyignore... 2024-10-22T00:46:14.843Z: Ignoring theme file snippets/pickup-availability.liquid via .shopifyignore... 2024-10-22T00:46:14.843Z: Ignoring theme file snippets/predictive-search-result-item.liquid via .shopifyignore... 2024-10-22T00:46:14.843Z: Ignoring theme file snippets/price-list.liquid via .shopifyignore... 2024-10-22T00:46:14.843Z: Ignoring theme file snippets/price-range.liquid via .shopifyignore... 2024-10-22T00:46:14.843Z: Ignoring theme file snippets/product-badges.liquid via .shopifyignore... 2024-10-22T00:46:14.843Z: Ignoring theme file snippets/product-card-horizontal.liquid via .shopifyignore... 2024-10-22T00:46:14.844Z: Ignoring theme file snippets/product-card-placeholder.liquid via .shopifyignore... 2024-10-22T00:46:14.844Z: Ignoring theme file snippets/product-card.liquid via .shopifyignore... 2024-10-22T00:46:14.844Z: Ignoring theme file snippets/product-gallery.liquid via .shopifyignore... 2024-10-22T00:46:14.844Z: Ignoring theme file snippets/product-info.liquid via .shopifyignore... 2024-10-22T00:46:14.844Z: Ignoring theme file snippets/product-quick-buy.liquid via .shopifyignore... 2024-10-22T00:46:14.844Z: Ignoring theme file snippets/product-rating.liquid via .shopifyignore... 2024-10-22T00:46:14.844Z: Ignoring theme file snippets/quantity-selector.liquid via .shopifyignore... 2024-10-22T00:46:14.844Z: Ignoring theme file snippets/section-header.liquid via .shopifyignore... 2024-10-22T00:46:14.845Z: Ignoring theme file snippets/select.liquid via .shopifyignore... 2024-10-22T00:46:14.845Z: Ignoring theme file snippets/shadow-dom-templates.liquid via .shopifyignore... 2024-10-22T00:46:14.845Z: Ignoring theme file snippets/share-buttons.liquid via .shopifyignore... 2024-10-22T00:46:14.845Z: Ignoring theme file snippets/shipping-estimator.liquid via .shopifyignore... 2024-10-22T00:46:14.845Z: Ignoring theme file snippets/social-media.liquid via .shopifyignore... 2024-10-22T00:46:14.845Z: Ignoring theme file snippets/social-meta-tags.liquid via .shopifyignore... 2024-10-22T00:46:14.845Z: Ignoring theme file snippets/surface.liquid via .shopifyignore... 2024-10-22T00:46:14.845Z: Ignoring theme file snippets/variant-picker.liquid via .shopifyignore... 2024-10-22T00:46:14.845Z: Ignoring theme file snippets/vendor.liquid via .shopifyignore... 2024-10-22T00:46:14.846Z: Ignoring theme file templates/404.json via .shopifyignore... 2024-10-22T00:46:14.846Z: Ignoring theme file templates/article.json via .shopifyignore... 2024-10-22T00:46:14.846Z: Ignoring theme file templates/blog.json via .shopifyignore... 2024-10-22T00:46:14.846Z: Ignoring theme file templates/cart.json via .shopifyignore... 2024-10-22T00:46:14.846Z: Ignoring theme file templates/collection.json via .shopifyignore... 2024-10-22T00:46:14.846Z: Ignoring theme file templates/customers/account.json via .shopifyignore... 2024-10-22T00:46:14.846Z: Ignoring theme file templates/customers/activate_account.json via .shopifyignore... 2024-10-22T00:46:14.846Z: Ignoring theme file templates/customers/addresses.json via .shopifyignore... 2024-10-22T00:46:14.847Z: Ignoring theme file templates/customers/login.json via .shopifyignore... 2024-10-22T00:46:14.847Z: Ignoring theme file templates/customers/order.json via .shopifyignore... 2024-10-22T00:46:14.847Z: Ignoring theme file templates/customers/register.json via .shopifyignore... 2024-10-22T00:46:14.847Z: Ignoring theme file templates/customers/reset_password.json via .shopifyignore... 2024-10-22T00:46:14.847Z: Ignoring theme file templates/gift_card.liquid via .shopifyignore... 2024-10-22T00:46:14.847Z: Ignoring theme file templates/index.json via .shopifyignore... 2024-10-22T00:46:14.847Z: Ignoring theme file templates/list-collections.json via .shopifyignore... 2024-10-22T00:46:14.847Z: Ignoring theme file templates/page.boutiques.json via .shopifyignore... 2024-10-22T00:46:14.847Z: Ignoring theme file templates/page.contact.json via .shopifyignore... 2024-10-22T00:46:14.848Z: Ignoring theme file templates/page.faq.json via .shopifyignore... 2024-10-22T00:46:14.848Z: Ignoring theme file templates/page.json via .shopifyignore... 2024-10-22T00:46:14.848Z: Ignoring theme file templates/page.list-collections.json via .shopifyignore... 2024-10-22T00:46:14.848Z: Ignoring theme file templates/page.our-story.json via .shopifyignore... 2024-10-22T00:46:14.848Z: Ignoring theme file templates/page.pf-b69a6590.json via .shopifyignore... 2024-10-22T00:46:14.848Z: Ignoring theme file templates/page.pf-e14e872d.json via .shopifyignore... 2024-10-22T00:46:14.848Z: Ignoring theme file templates/page.pf-ea550fbe.json via .shopifyignore... 2024-10-22T00:46:14.848Z: Ignoring theme file templates/page.privacy-policy.json via .shopifyignore... 2024-10-22T00:46:14.849Z: Ignoring theme file templates/page.returns-shipping.json via .shopifyignore... 2024-10-22T00:46:14.849Z: Ignoring theme file templates/page.sign-up.json via .shopifyignore... 2024-10-22T00:46:14.849Z: Ignoring theme file templates/page.stockists.json via .shopifyignore... 2024-10-22T00:46:14.849Z: Ignoring theme file templates/page.terms-conditions.json via .shopifyignore... 2024-10-22T00:46:14.849Z: Ignoring theme file templates/page.wishlist.json via .shopifyignore... 2024-10-22T00:46:14.849Z: Ignoring theme file templates/password.json via .shopifyignore... 2024-10-22T00:46:14.849Z: Ignoring theme file templates/product.json via .shopifyignore... 2024-10-22T00:46:14.849Z: Ignoring theme file templates/product.linked-products.json via .shopifyignore... 2024-10-22T00:46:14.850Z: Ignoring theme file templates/product.pre-order.json via .shopifyignore... 2024-10-22T00:46:14.850Z: Ignoring theme file templates/search.json via .shopifyignore... 2024-10-22T00:46:14.850Z: Files to be deleted:
╭─ success ──────────────────────────────────────────────────────────────────────────────────────────────────────────╮ │ │ │ Preview your theme │ │ • http://127.0.0.1:9292 │ │ │ │ Next steps │ │ • Preview your gift cards │ │ • Customize your theme at the theme editor │ │ • Share your theme preview (https://xxxxxxxxxxxxx.myshopify.com/?preview_theme_id=129552679021) │ │ │ ╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
2024-10-22T00:46:14.894Z: Running system process: · Command: npm prefix
2024-10-22T00:46:16.132Z: Running system process: · Command: ruby -v
2024-10-22T00:46:16.489Z: Request to https://monorail-edge.shopifysvc.com/v1/produce completed in 300 ms With response headers:
2024-10-22T00:46:16.491Z: Analytics event sent: { "command": "theme dev", "time_start": 1729557972716, "time_end": 1729557974885, "total_time": 2169, "success": true, "cli_version": "3.69.0", "ruby_version": "3.3.5", "node_version": "18.19.0", "is_employee": false, "uname": "darwin amd64", "env_ci": false, "env_plugin_installed_any_custom": true, "env_plugin_installed_shopify": "[\"@shopify/cli\"]", "env_shell": "zsh", "env_device_id": "", "env_cloud": "localhost", "env_package_manager": "npm", "env_is_global": false, "env_auth_method": "theme_access_token", "cmd_app_warning_api_key_deprecation_displayed": false, "cmd_all_timing_network_ms": 1900, "cmd_all_timing_prompts_ms": 0, "cmd_all_launcher": "unknown", "cmd_all_topic": "theme", "cmd_all_plugin": "@shopify/theme", "cmd_all_force": false, "cmd_all_verbose": true, "cmd_all_path_override": true, "cmd_all_path_override_hash": "", "cmd_all_timing_active_ms": 268, "cmd_all_exit": "ok", "user_id": "", "args": "--environment development --verbose", "cmd_all_environment_flags": "{\"store\":\"xxxxxxxxxxxxx\",\"password\":\"*****\",\"theme\":\"129552679021\"}", "env_plugin_installed_all": "[\"@shopify/cli\",\"theme\"]", "metadata": "{\"extraPublic\":{},\"extraSensitive\":{}}" } 2024-10-22T00:46:16.492Z: Completed command theme dev 2024-10-22T00:46:16.647Z: → Rendering https://theme-kit-access.shopifyapps.com/cli/sfr/pages/wishlist?_fd=0&pb=0 (with )... 2024-10-22T00:46:17.350Z: Request to https://theme-kit-access.shopifyapps.com/cli/sfr/pages/wishlist?_fd=0&pb=0 completed in 702 ms With response headers:
2024-10-22T00:46:17.352Z: ← 200 (request_id: 86b719d1-62d5-4a88-b1de-46d12707a57d-1729557976) • 13:46:17 Request » GET 200 /pages/wishlist 674ms
$ node -v v18.19.0
Reproduction steps
npm add @shopify/cli@latest
./node_modules/.bin/shopify theme dev --environment development --verbose
(with or without--legacy
flag)Operating System
MacOs Sonoma 14.7
Shopify CLI version (check your project's
package.json
if you're not sure)3.69.0
Shell
zsh
Node version (run
node -v
if you're not sure)v18.19.0
What language and version are you using in your application?
ruby 3.3.5 (2024-09-03 revision ef084cc8f4) [x86_64-darwin23]