Skip to content

Commit

Permalink
chore: remove dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
vvagaytsev authored and thsig committed May 12, 2023
1 parent 50529d8 commit b0c6f75
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions core/src/plugin/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

import type { ActionLog, Log } from "../logger/log-entry"
import { PluginContext, pluginContextSchema } from "../plugin-context"
import { GardenModule, moduleSchema } from "../types/module"
import { createSchema, joi } from "../config/common"
import { dedent, deline } from "../util/string"
import type { BuildAction } from "../actions/build"
Expand Down Expand Up @@ -97,20 +96,6 @@ export interface PluginTestActionParamsBase<T extends TestAction<any, any>> exte
action: T
}

/**
* START LEGACY
*/
export interface PluginModuleActionParamsBase<T extends GardenModule = GardenModule> extends PluginActionParamsBase {
module: T
}
export const moduleActionParamsSchema = () =>
actionParamsSchema().keys({
module: moduleSchema(),
})
/**
* END LEGACY
*/

export const runBaseParams = () => ({
interactive: joi.boolean().description("Whether to run interactively (i.e. attach to the terminal)."),
silent: joi.boolean().description("Set to false if no output should be logged."),
Expand Down

0 comments on commit b0c6f75

Please sign in to comment.