@speedkit/cli 3.22.0 → 3.23.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,11 @@
1
+ # [3.23.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.22.0...v3.23.0) (2026-01-30)
2
+
3
+
4
+ ### Features
5
+
6
+ * **customer-config:** add a timeout to wait for potential click listeners to be completed ([36aba47](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/36aba475854d8a873a31a464c5e0e68302d2cdd9))
7
+ * **customer-config:** include comment about hard navigation execution ([f0fdac6](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/f0fdac631a90e818e6ed4ce3d9b3c8482df3f3aa))
8
+
1
9
  # [3.22.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.21.0...v3.22.0) (2026-01-30)
2
10
 
3
11
 
package/README.md CHANGED
@@ -21,7 +21,7 @@ $ npm install -g @speedkit/cli
21
21
  $ sk COMMAND
22
22
  running command...
23
23
  $ sk (--version)
24
- @speedkit/cli/3.22.0 linux-x64 node-v20.20.0
24
+ @speedkit/cli/3.23.0 linux-x64 node-v20.20.0
25
25
  $ sk --help [COMMAND]
26
26
  USAGE
27
27
  $ sk COMMAND
@@ -449,9 +449,12 @@ import { PredictivePreloading } from 'predictive-preloading/predictivePreloading
449
449
 
450
450
  // Prevent soft navigation
451
451
  event.preventDefault();
452
+ setTimeout(() => {
453
+ // let potential click listener be completed
452
454
 
453
- // Execute hard navigation instead
454
- location.href = target.href;
455
+ //Execute hard navigation instead
456
+ location.href = target.href;
457
+ });
455
458
  }
456
459
  window.addEventListener("click", speedKitClickEventListener, true);
457
460
  }
@@ -738,5 +738,5 @@
738
738
  ]
739
739
  }
740
740
  },
741
- "version": "3.22.0"
741
+ "version": "3.23.0"
742
742
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@speedkit/cli",
3
3
  "description": "Speed Kit CLI",
4
- "version": "3.22.0",
4
+ "version": "3.23.0",
5
5
  "author": {
6
6
  "name": "Baqend.com",
7
7
  "email": "info@baqend.com"