This repository has been archived by the owner on Jul 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove the
data/shopify_liquid/(tags|filters|objects).yml
files (#674)
### WHY are these changes introduced? Fixes #656 ### WHAT is this pull request doing? - Removes the usage of `data/shopify_liquid/tags.yml`, `data/shopify_liquid/filters.yml`, `data/shopify_liquid/objects.yml` in favor of the `SourceIndex`, which holds the most updated values for objects, filters, and tags. - Transforms remaining `.yml` files to `.json` files, so that we only have 1 format. - Adds some logic for existing objects, filters, tags, so that it resembles the existing `.yml` files content.
- Loading branch information
Julien Poitrin
authored
Dec 15, 2022
1 parent
2328269
commit 0cf59c8
Showing
20 changed files
with
156 additions
and
381 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"Liquid::ColorFilter": { | ||
"hex_to_rgba": [ | ||
"color_to_rgb", | ||
"color_modify" | ||
] | ||
}, | ||
"Liquid::UrlFilter": { | ||
"img_url": [ | ||
"image_url" | ||
], | ||
"img_tag": [ | ||
"image_tag" | ||
], | ||
"collection_img_url": [ | ||
"img_url" | ||
], | ||
"product_img_url": [ | ||
"img_url" | ||
] | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[ | ||
"alternative_payment_methods", | ||
"breadcrumb", | ||
"checkout_html_classes", | ||
"checkout_scripts", | ||
"checkout_stylesheets", | ||
"content_for_footer", | ||
"content_for_logo", | ||
"content_for_order_summary", | ||
"direction", | ||
"locale", | ||
"order_summary_toggle", | ||
"skip_to_content_link", | ||
"tracking_code" | ||
] |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.