@speedkit/cli 3.39.0 → 3.40.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
|
+
# [3.40.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.39.0...v3.40.0) (2026-04-01)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **customer-conifg:** add encouragement for url documentation for selectors ([b56e615](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/b56e6155e37dd0f74a6b5978308582d4a7a9750b))
|
|
7
|
+
|
|
1
8
|
# [3.39.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.38.0...v3.39.0) (2026-04-01)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
...lazyLoadDefaultConfig,
|
|
21
21
|
elementSelectors: [
|
|
22
22
|
'.image-with-text-overlay__banner',
|
|
23
|
+
// e.g. <example-url>
|
|
23
24
|
],
|
|
24
25
|
limit: 1
|
|
25
26
|
},
|
|
@@ -29,6 +30,7 @@
|
|
|
29
30
|
...lazyLoadDefaultConfig,
|
|
30
31
|
elementSelectors: [
|
|
31
32
|
'.product-image__wrapper',
|
|
33
|
+
// e.g. <example-url>
|
|
32
34
|
],
|
|
33
35
|
limit: 4
|
|
34
36
|
},
|
|
@@ -38,6 +40,7 @@
|
|
|
38
40
|
...lazyLoadDefaultConfig,
|
|
39
41
|
elementSelectors: [
|
|
40
42
|
'.product-gallery__image',
|
|
43
|
+
// e.g. <example-url>
|
|
41
44
|
],
|
|
42
45
|
limit: 1
|
|
43
46
|
},
|
|
@@ -167,8 +170,13 @@ const config = {
|
|
|
167
170
|
{
|
|
168
171
|
whenPresent: 'body > #app',
|
|
169
172
|
waitFor: [
|
|
170
|
-
//
|
|
171
|
-
|
|
173
|
+
// TODO: adjust/replace this exemplary list
|
|
174
|
+
|
|
175
|
+
// PLP wait for first image to be loaded
|
|
176
|
+
// e.g. <example-url>
|
|
177
|
+
'.products-list-page__products-list .products-list__tiles__element:first-child img[src]',
|
|
178
|
+
// or the no results disclaimer appears:
|
|
179
|
+
'.products-list-page__products-list .no-results-found',
|
|
172
180
|
],
|
|
173
181
|
{{#if addSSRInnerShadowDomSupport}}
|
|
174
182
|
waitForCallback: waitForCallback.toString(),
|
|
@@ -39,12 +39,14 @@
|
|
|
39
39
|
},
|
|
40
40
|
|
|
41
41
|
// Stage Teaser:
|
|
42
|
+
// e.g. <example-url>
|
|
42
43
|
{
|
|
43
44
|
find: ".stage-teaser source",
|
|
44
45
|
compare: ["srcset"],
|
|
45
46
|
},
|
|
46
47
|
|
|
47
48
|
// PLP Items:
|
|
49
|
+
// e.g. <example-url>
|
|
48
50
|
{
|
|
49
51
|
find: ".product-grid .product img",
|
|
50
52
|
limit: 9, // only compare the first 9 products
|
|
@@ -52,6 +54,7 @@
|
|
|
52
54
|
},
|
|
53
55
|
|
|
54
56
|
// PDP Hero Image:
|
|
57
|
+
// e.g. <example-url>
|
|
55
58
|
{
|
|
56
59
|
find: ".product-detail .slide.main img",
|
|
57
60
|
compare: ["src"],
|
|
@@ -124,12 +127,14 @@
|
|
|
124
127
|
},
|
|
125
128
|
|
|
126
129
|
// Stage Teaser:
|
|
130
|
+
// e.g. <example-url>
|
|
127
131
|
{
|
|
128
132
|
find: ".stage-teaser source",
|
|
129
133
|
compare: ["srcset"],
|
|
130
134
|
},
|
|
131
135
|
|
|
132
136
|
// PLP Items:
|
|
137
|
+
// e.g. <example-url>
|
|
133
138
|
{
|
|
134
139
|
find: ".product-grid .product img",
|
|
135
140
|
limit: 9, // only compare the first 9 products
|
|
@@ -137,6 +142,7 @@
|
|
|
137
142
|
},
|
|
138
143
|
|
|
139
144
|
// PDP Hero Image:
|
|
145
|
+
// e.g. <example-url>
|
|
140
146
|
{
|
|
141
147
|
find: ".product-detail .slide.main img",
|
|
142
148
|
compare: ["src"],
|
package/oclif.manifest.json
CHANGED