@sveltejs/adapter-vercel 5.6.1 → 5.6.2

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.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -405,7 +405,7 @@ const plugin = function (defaults = {}) {
405
405
  );
406
406
 
407
407
  static_config.routes.push({
408
- src: `${builder.config.kit.paths.base}/${builder.config.kit.appDir}/route(\\.js|/.*)`,
408
+ src: `${builder.config.kit.paths.base}/(|.+/)__route\\.js`,
409
409
  dest: `${builder.config.kit.paths.base}/${builder.config.kit.appDir}/route`
410
410
  });
411
411
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sveltejs/adapter-vercel",
3
- "version": "5.6.1",
3
+ "version": "5.6.2",
4
4
  "description": "A SvelteKit adapter that creates a Vercel app",
5
5
  "keywords": [
6
6
  "adapter",
@@ -42,7 +42,7 @@
42
42
  "@types/node": "^18.19.48",
43
43
  "typescript": "^5.3.3",
44
44
  "vitest": "^3.0.1",
45
- "@sveltejs/kit": "^2.17.0"
45
+ "@sveltejs/kit": "^2.17.2"
46
46
  },
47
47
  "peerDependencies": {
48
48
  "@sveltejs/kit": "^2.4.0"