@sveltejs/kit 1.3.2 → 1.3.3
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 +1 -1
- package/src/utils/fork.js +1 -0
- package/types/ambient.d.ts +1 -1
package/package.json
CHANGED
package/src/utils/fork.js
CHANGED
package/types/ambient.d.ts
CHANGED
|
@@ -237,7 +237,7 @@ declare module '$app/navigation' {
|
|
|
237
237
|
* Programmatically imports the code for routes that haven't yet been fetched.
|
|
238
238
|
* Typically, you might call this to speed up subsequent navigation.
|
|
239
239
|
*
|
|
240
|
-
* You can specify routes by any matching pathname such as `/about` (to match `src/routes/about.svelte`) or `/blog/*` (to match `src/routes/blog/[slug].svelte`).
|
|
240
|
+
* You can specify routes by any matching pathname such as `/about` (to match `src/routes/about/+page.svelte`) or `/blog/*` (to match `src/routes/blog/[slug]/+page.svelte`).
|
|
241
241
|
*
|
|
242
242
|
* Unlike `preloadData`, this won't call `load` functions.
|
|
243
243
|
* Returns a Promise that resolves when the modules have been imported.
|