create-vite-plugin-web-extension
create-vite-plugin-web-extension copied to clipboard
chore: bump @types/chrome in templates to 0.0.263
Prior to version 0.0.254, the type of ManifestBass["author"] in @types/chrome was as follows:
// ...
export interface ManifestBase {
// Required
manifest_version: number;
name: string;
version: string;
// Recommended
default_locale?: string | undefined;
description?: string | undefined;
icons?: ManifestIcons | undefined;
// Optional
author?: string | undefined
// ...
}
After version 0.0.254(As of now, the latest version is 0.0.263), the type of ManifestBass["author"] in @types/chrome is as follows:
// ...
export interface ManifestBase {
// Required
manifest_version: number;
name: string;
version: string;
// Recommended
default_locale?: string | undefined;
description?: string | undefined;
icons?: ManifestIcons | undefined;
// Optional
author?: {
email: string;
} | undefine
// ...
}
Appreciate the PR! Rather than add [email protected], can you just remove the author fields everywhere? It's optional so there's not really any reason to set it in the templates at all really.
Appreciate the PR! Rather than add [email protected], can you just remove the author fields everywhere? It's optional so there's not really any reason to set it in the templates at all really.
Thanks for the recognition! I think you are right and I have made the changes.