@speedkit/cli 2.73.1 → 2.74.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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [2.74.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v2.73.1...v2.74.0) (2025-01-09)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **customer-config:** improve change detection examples ([d98967d](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/d98967d7da77ae9006ab9a3d1a2e87667784afd1))
|
|
7
|
+
|
|
1
8
|
## [2.73.1](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v2.73.0...v2.73.1) (2025-01-08)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -27,22 +27,36 @@
|
|
|
27
27
|
compare: ["text"],
|
|
28
28
|
},
|
|
29
29
|
|
|
30
|
-
//
|
|
30
|
+
// Top Banner:
|
|
31
|
+
{
|
|
32
|
+
find: ".header .top-banner",
|
|
33
|
+
compare: ["text"],
|
|
34
|
+
},
|
|
35
|
+
|
|
36
|
+
// First-Level Items of Header/Main Navigation:
|
|
37
|
+
{
|
|
38
|
+
find: ".header .main-navigation .first-level-item",
|
|
39
|
+
compare: ["text"],
|
|
40
|
+
},
|
|
41
|
+
|
|
42
|
+
// Stage Teaser:
|
|
31
43
|
{
|
|
32
44
|
find: ".stage-teaser source",
|
|
33
45
|
compare: ["srcset"],
|
|
34
46
|
},
|
|
35
47
|
|
|
36
|
-
// PLP:
|
|
48
|
+
// PLP Items:
|
|
37
49
|
{
|
|
38
50
|
find: ".product-grid .product img",
|
|
39
51
|
limit: 9, // only compare the first 9 products
|
|
40
52
|
compare: ["src"],
|
|
41
53
|
},
|
|
42
|
-
// ...
|
|
43
54
|
|
|
44
|
-
// PDP:
|
|
45
|
-
|
|
55
|
+
// PDP Hero Image:
|
|
56
|
+
{
|
|
57
|
+
find: ".product-detail .slide.main img",
|
|
58
|
+
compare: ["src"],
|
|
59
|
+
},
|
|
46
60
|
],
|
|
47
61
|
},
|
|
48
62
|
{{#if isShopify}}
|
package/oclif.manifest.json
CHANGED