@sveltejs/kit 2.5.9 → 2.5.10
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 +2 -2
- package/src/exports/vite/index.js +4 -1
- package/src/version.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sveltejs/kit",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.10",
|
|
4
4
|
"description": "The fastest way to build Svelte apps",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"cookie": "^0.6.0",
|
|
16
16
|
"devalue": "^5.0.0",
|
|
17
17
|
"esm-env": "^1.0.0",
|
|
18
|
-
"import-meta-resolve": "^4.
|
|
18
|
+
"import-meta-resolve": "^4.1.0",
|
|
19
19
|
"kleur": "^4.1.5",
|
|
20
20
|
"magic-string": "^0.30.5",
|
|
21
21
|
"mrmime": "^2.0.0",
|
|
@@ -293,7 +293,10 @@ async function kit({ svelte_config }) {
|
|
|
293
293
|
cors: { preflightContinue: true }
|
|
294
294
|
},
|
|
295
295
|
optimizeDeps: {
|
|
296
|
-
entries: [
|
|
296
|
+
entries: [
|
|
297
|
+
`${kit.files.routes}/**/+*.{svelte,js,ts}`,
|
|
298
|
+
`!${kit.files.routes}/**/+*server.*`
|
|
299
|
+
],
|
|
297
300
|
exclude: [
|
|
298
301
|
'@sveltejs/kit',
|
|
299
302
|
// exclude kit features so that libraries using them work even when they are prebundled
|
package/src/version.js
CHANGED