Skip to content
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

[chore] deduplicate config types #2030

Merged
merged 11 commits into from
Jul 30, 2021
Prev Previous commit
Next Next commit
lint
  • Loading branch information
ignatiusmb committed Jul 29, 2021
commit 09ecb6e9163800b2fd3db7976ba463fb1af54723
2 changes: 1 addition & 1 deletion packages/kit/types/config.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export interface AdapterUtils {
copy_server_files: (dest: string) => void;
copy_static_files: (dest: string) => void;
copy: (from: string, to: string, filter?: (basename: string) => boolean) => void;
update_ignores: ({ patterns, log }: { patterns: string[]; log?: boolean }) => void;
update_ignores: ({ patterns, log }: { patterns: string[]; log?: boolean }) => void;
prerender: (options: { all?: boolean; dest: string; fallback?: string }) => Promise<void>;
}

Expand Down