Skip to content

chore(deps): update dependency netlify-cli to v23 #14071

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Aug 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/adapter-netlify/test/apps/basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"devDependencies": {
"@sveltejs/kit": "workspace:^",
"@sveltejs/vite-plugin-svelte": "catalog:",
"netlify-cli": "^22.1.5",
"netlify-cli": "^23.0.0",
"svelte": "^5.23.1",
"vite": "catalog:"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/adapter-netlify/test/apps/edge/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"devDependencies": {
"@sveltejs/kit": "workspace:^",
"@sveltejs/vite-plugin-svelte": "catalog:",
"netlify-cli": "^22.1.5",
"netlify-cli": "^23.0.0",
"svelte": "^5.23.1",
"vite": "catalog:"
},
Expand Down
10 changes: 5 additions & 5 deletions packages/kit/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2120,7 +2120,7 @@ declare module '@sveltejs/kit' {
* Checks whether this is an error thrown by {@link error}.
* @param status The status to filter for.
* */
export function isHttpError<T extends number>(e: unknown, status?: T | undefined): e is (HttpError_1 & {
export function isHttpError<T extends number>(e: unknown, status?: T): e is (HttpError_1 & {
status: T extends undefined ? never : T;
});
/**
Expand Down Expand Up @@ -2150,13 +2150,13 @@ declare module '@sveltejs/kit' {
* @param data The value that will be serialized as JSON.
* @param init Options such as `status` and `headers` that will be added to the response. `Content-Type: application/json` and `Content-Length` headers will be added automatically.
*/
export function json(data: any, init?: ResponseInit | undefined): Response;
export function json(data: any, init?: ResponseInit): Response;
/**
* Create a `Response` object from the supplied body.
* @param body The value that will be used as-is.
* @param init Options such as `status` and `headers` that will be added to the response. A `Content-Length` header will be added automatically.
*/
export function text(body: string, init?: ResponseInit | undefined): Response;
export function text(body: string, init?: ResponseInit): Response;
/**
* Create an `ActionFailure` object. Call when form submission fails.
* @param status The [HTTP status code](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client_error_responses). Must be in the range 400-599.
Expand Down Expand Up @@ -2455,7 +2455,7 @@ declare module '$app/navigation' {
invalidateAll?: boolean | undefined;
invalidate?: (string | URL | ((url: URL) => boolean))[] | undefined;
state?: App.PageState | undefined;
} | undefined): Promise<void>;
}): Promise<void>;
/**
* Causes any `load` functions belonging to the currently active page to re-run if they depend on the `url` in question, via `fetch` or `depends`. Returns a `Promise` that resolves when the page is subsequently updated.
*
Expand Down Expand Up @@ -2484,7 +2484,7 @@ declare module '$app/navigation' {
* */
export function refreshAll({ includeLoadFunctions }?: {
includeLoadFunctions?: boolean;
} | undefined): Promise<void>;
}): Promise<void>;
/**
* Programmatically preloads the given page, which means
* 1. ensuring that the code for the page is loaded, and
Expand Down
2 changes: 1 addition & 1 deletion packages/package/src/filesystem.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export function walk(cwd, dirs = false) {
}
}

return walk_dir(''), all_files;
return (walk_dir(''), all_files);
}

/**
Expand Down
Loading
Loading