@sveltejs/kit 2.53.0 → 2.53.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.53.0",
3
+ "version": "2.53.1",
4
4
  "description": "SvelteKit is the fastest way to build Svelte apps",
5
5
  "keywords": [
6
6
  "framework",
@@ -38,7 +38,7 @@
38
38
  "@types/connect": "^3.4.38",
39
39
  "@types/node": "^18.19.119",
40
40
  "@types/set-cookie-parser": "^2.4.7",
41
- "dts-buddy": "^0.6.2",
41
+ "dts-buddy": "^0.7.0",
42
42
  "rollup": "^4.14.2",
43
43
  "svelte": "^5.51.5",
44
44
  "svelte-preprocess": "^6.0.0",
@@ -932,7 +932,9 @@ async function kit({ svelte_config }) {
932
932
  assetFileNames: `${prefix}/assets/[name].[hash][extname]`,
933
933
  hoistTransitiveImports: false,
934
934
  sourcemapIgnoreList,
935
- inlineDynamicImports: !split
935
+ inlineDynamicImports: is_rolldown ? undefined : !split,
936
+ // @ts-ignore: only available in Vite 8
937
+ codeSplitting: is_rolldown ? split : undefined
936
938
  },
937
939
  preserveEntrySignatures: 'strict',
938
940
  onwarn(warning, handler) {
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.53.0';
4
+ export const VERSION = '2.53.1';