-
-
Notifications
You must be signed in to change notification settings - Fork 68
chore(plugin): add inertia 3 plugin to registry #420
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| '@tanstack/devtools': patch | ||
| --- | ||
|
|
||
| Add inertia 3 devtool to registry | ||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -259,6 +259,27 @@ const PLUGIN_REGISTRY: Record<string, PluginMetadata> = { | |||||
| isNew: true, | ||||||
| tags: ['Router', 'Prefetch', 'Analytics', 'Overlay', 'TanStack'], | ||||||
| }, | ||||||
|
|
||||||
| // Santos Vilanculos β Inertia 3 Devtools for React | ||||||
| '@santosvilanculos/bevor-react': { | ||||||
| packageName: '@santosvilanculos/bevor-react', | ||||||
| title: 'Inertia 3 Devtools', | ||||||
| description: 'Inertia 3 devtools built on top of TanStack DevTools', | ||||||
| pluginImport: { | ||||||
| importName: 'inertiaDevtoolsPlugin', | ||||||
| type: 'function', | ||||||
| }, | ||||||
| pluginId: 'inertia-devtools', | ||||||
| logoUrl: | ||||||
| 'https://raw.githubusercontent.com/santosvilanculos/bevor/main/logo.png', | ||||||
| docsUrl: | ||||||
| 'https://github.com/SantosVilanculos/bevor/tree/main/packages/react', | ||||||
| repoUrl: 'https://github.com/SantosVilanculos/bevor', | ||||||
| author: 'Santos Vilanculos (santosvilanculos@yahoo.com)', | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove direct email address from public plugin metadata. Committing a personal email in π§ Suggested change- author: 'Santos Vilanculos (santosvilanculos@yahoo.com)',
+ author: 'Santos Vilanculos (`@SantosVilanculos`)',π Committable suggestion
Suggested change
π€ Prompt for AI Agents |
||||||
| framework: 'react', | ||||||
| isNew: true, | ||||||
| tags: ['TanStack', 'React', 'Inertia', 'Laravel'], | ||||||
| }, | ||||||
| } | ||||||
|
|
||||||
| /** | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Polish release note wording for consistency.
Use product casing/plural form to match existing terminology: βAdd Inertia 3 devtools plugin to the registryβ.
π€ Prompt for AI Agents