@sveltejs/kit 2.5.11 → 2.5.13

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": "2.5.11",
3
+ "version": "2.5.13",
4
4
  "description": "The fastest way to build Svelte apps",
5
5
  "keywords": [
6
6
  "framework",
@@ -52,7 +52,9 @@ export function read(asset) {
52
52
  });
53
53
  }
54
54
 
55
- const file = DEV && asset.startsWith('/@fs') ? asset : asset.slice(base.length + 1);
55
+ const file = DEV
56
+ ? decodeURIComponent(asset.startsWith('/@fs') ? asset : asset.slice(base.length + 1))
57
+ : asset.slice(base.length + 1);
56
58
 
57
59
  if (file in manifest._.server_assets) {
58
60
  const length = manifest._.server_assets[file];
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 = '2.5.11';
4
+ export const VERSION = '2.5.13';