Skip to content

Commit

Permalink
chore: update plugin interface
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Oct 18, 2023
1 parent f14181e commit 3059f5d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/interfaces/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ export interface Plugin {
* name from package.json
*/
name: string
parent?: Plugin
/**
* full package.json
*
Expand All @@ -71,8 +72,8 @@ export interface Plugin {
* only used for user plugins
*/
tag?: string
readonly topics: Topic[]

readonly topics: Topic[]
/**
* used to tell the user how the plugin was installed
* examples: core, link, user, dev
Expand All @@ -82,6 +83,7 @@ export interface Plugin {
* if it appears to be an npm package but does not look like it's really a CLI plugin, this is set to false
*/
valid: boolean

/**
* version from package.json
*
Expand Down

0 comments on commit 3059f5d

Please sign in to comment.