@sveltejs/kit 1.24.0 → 1.24.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sveltejs/kit",
3
- "version": "1.24.0",
3
+ "version": "1.24.1",
4
4
  "description": "The fastest way to build Svelte apps",
5
5
  "repository": {
6
6
  "type": "git",
@@ -2035,6 +2035,9 @@ function create_navigation(current, intent, url, type) {
2035
2035
  reject = r;
2036
2036
  });
2037
2037
 
2038
+ // Handle any errors off-chain so that it doesn't show up as an unhandled rejection
2039
+ complete.catch(() => {});
2040
+
2038
2041
  /** @type {import('@sveltejs/kit').Navigation} */
2039
2042
  const navigation = {
2040
2043
  from: {
package/src/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  // generated during release, do not modify
2
2
 
3
3
  /** @type {string} */
4
- export const VERSION = '1.24.0';
4
+ export const VERSION = '1.24.1';