@speedkit/cli 3.11.1 → 3.11.3
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,17 @@
|
|
|
1
|
+
## [3.11.3](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.11.2...v3.11.3) (2025-10-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **wizard:** lazy-removal adapt to DOM doc-handler ([968e4bc](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/968e4bc74629df287ffa47bdd93539c577831a55))
|
|
7
|
+
|
|
8
|
+
## [3.11.2](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.11.1...v3.11.2) (2025-10-21)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **wizard:** doc handler config typing ([e0344c6](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/e0344c665f8e1e92c93d75404f3fde4093f49ee3))
|
|
14
|
+
|
|
1
15
|
## [3.11.1](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.11.0...v3.11.1) (2025-10-21)
|
|
2
16
|
|
|
3
17
|
|
package/README.md
CHANGED
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
// Content page's stage image:
|
|
19
19
|
{
|
|
20
20
|
...lazyLoadDefaultConfig,
|
|
21
|
-
|
|
22
|
-
'image-with-text-overlay__banner',
|
|
21
|
+
elementSelectors: [
|
|
22
|
+
'.image-with-text-overlay__banner',
|
|
23
23
|
],
|
|
24
24
|
limit: 1
|
|
25
25
|
},
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
// PLP product images:
|
|
28
28
|
{
|
|
29
29
|
...lazyLoadDefaultConfig,
|
|
30
|
-
|
|
31
|
-
'product-image__wrapper',
|
|
30
|
+
elementSelectors: [
|
|
31
|
+
'.product-image__wrapper',
|
|
32
32
|
],
|
|
33
33
|
limit: 4
|
|
34
34
|
},
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
// PDP hero image:
|
|
37
37
|
{
|
|
38
38
|
...lazyLoadDefaultConfig,
|
|
39
|
-
|
|
40
|
-
'product-gallery__image',
|
|
39
|
+
elementSelectors: [
|
|
40
|
+
'.product-gallery__image',
|
|
41
41
|
],
|
|
42
42
|
limit: 1
|
|
43
43
|
},
|
package/oclif.manifest.json
CHANGED