full site update

This commit is contained in:
2025-07-24 18:46:24 +02:00
parent bfe2b90d8d
commit 37a6e0ab31
6912 changed files with 540482 additions and 361712 deletions

11
node_modules/vitefu/src/index.d.ts generated vendored
View File

@@ -9,6 +9,15 @@ export interface CrawlFrameworkPkgsOptions {
* Whether we're currently in a Vite build
*/
isBuild: boolean
/**
* Path to workspace root of the project
*
* setting this enables crawling devDependencies of private packages inside the workspace
* you can use `import {searchForWorkspaceRoot} from 'vite'` to find it.
*/
workspaceRoot?: string
/**
* Optional. If a Vite user config is passed, the output Vite config will respect the
* set `optimizeDeps` and `ssr` options so it doesn't override it
@@ -89,7 +98,7 @@ export declare function crawlFrameworkPkgs(
*/
export declare function findDepPkgJsonPath(
dep: string,
parent: string
parent: string,
): Promise<string | undefined>
/**