@sveltejs/kit 2.59.0 → 2.59.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": "2.59.0",
3
+ "version": "2.59.1",
4
4
  "description": "SvelteKit is the fastest way to build Svelte apps",
5
5
  "keywords": [
6
6
  "framework",
@@ -101,7 +101,7 @@ export async function dev(vite, vite_config, svelte_config, get_remotes) {
101
101
 
102
102
  /** @param {string} id */
103
103
  async function resolve(id) {
104
- const url = id.startsWith('..') ? to_fs(path.posix.resolve(id)) : `/${id}`;
104
+ const url = id.startsWith('..') ? to_fs(path.resolve(id)) : `/${id}`;
105
105
 
106
106
  const module = await loud_ssr_load_module(url);
107
107
 
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.59.0';
4
+ export const VERSION = '2.59.1';