shopify-theme-devtools 2.0.0 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +191 -54
- package/dist/theme-devtools.js +715 -369
- package/package.json +2 -1
- package/src/liquid/theme-devtools-bridge.liquid +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shopify-theme-devtools",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "In-browser devtools panel for Shopify theme development - inspect Liquid context, metafields, settings, sections, and cart state",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/theme-devtools.js",
|
|
@@ -53,6 +53,7 @@
|
|
|
53
53
|
"vite": "^5.4.11"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
|
+
"liquidjs": "^10.24.0",
|
|
56
57
|
"lit": "^3.3.2"
|
|
57
58
|
},
|
|
58
59
|
"engines": {
|
|
@@ -196,8 +196,8 @@ checkout_logo|image_picker|Checkout logo|checkout
|
|
|
196
196
|
"type": {{ product.type | json }},
|
|
197
197
|
"vendor": {{ product.vendor | json }},
|
|
198
198
|
"available": {{ product.available | json }},
|
|
199
|
-
"published_at": {{ product.published_at | json }},
|
|
200
|
-
"created_at": {{ product.created_at | json }},
|
|
199
|
+
"published_at": {{ product.published_at | date: "%Y-%m-%dT%H:%M:%S%z" | json }},
|
|
200
|
+
"created_at": {{ product.created_at | date: "%Y-%m-%dT%H:%M:%S%z" | json }},
|
|
201
201
|
"tags": {{ product.tags | json }},
|
|
202
202
|
"price": {{ product.price | json }},
|
|
203
203
|
"price_min": {{ product.price_min | json }},
|
|
@@ -258,8 +258,8 @@ checkout_logo|image_picker|Checkout logo|checkout
|
|
|
258
258
|
"title": {{ article.title | json }},
|
|
259
259
|
"handle": {{ article.handle | json }},
|
|
260
260
|
"author": {{ article.author | json }},
|
|
261
|
-
"created_at": {{ article.created_at | json }},
|
|
262
|
-
"published_at": {{ article.published_at | json }},
|
|
261
|
+
"created_at": {{ article.created_at | date: "%Y-%m-%dT%H:%M:%S%z" | json }},
|
|
262
|
+
"published_at": {{ article.published_at | date: "%Y-%m-%dT%H:%M:%S%z" | json }},
|
|
263
263
|
"tags": {{ article.tags | json }},
|
|
264
264
|
"comments_count": {{ article.comments_count | json }},
|
|
265
265
|
"comments_enabled": {{ article.comments_enabled | json }},
|