Skip to content

Commit

Permalink
refactor: split up config-context module
Browse files Browse the repository at this point in the history
  • Loading branch information
edvald authored and thsig committed Feb 22, 2021
1 parent 91376d7 commit 6919bc5
Show file tree
Hide file tree
Showing 25 changed files with 2,041 additions and 1,784 deletions.
2 changes: 1 addition & 1 deletion core/src/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ import { DeployTask } from "./tasks/deploy"
import { BuildDependencyConfig } from "./config/module"
import { Profile } from "./util/profiling"
import { ConfigGraph } from "./config-graph"
import { ModuleConfigContext } from "./config/config-context"
import { ModuleConfigContext } from "./config/template-contexts/module"
import { GetDashboardPageParams, GetDashboardPageResult } from "./types/plugin/provider/getDashboardPage"
import { GetModuleOutputsParams, GetModuleOutputsResult } from "./types/plugin/module/getModuleOutputs"

Expand Down
6 changes: 5 additions & 1 deletion core/src/commands/run/workflow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ import { Garden } from "../../garden"
import { WorkflowStepSpec, WorkflowConfig, WorkflowFileSpec } from "../../config/workflow"
import { LogEntry } from "../../logger/log-entry"
import { GardenError, WorkflowScriptError } from "../../exceptions"
import { WorkflowConfigContext, WorkflowStepConfigContext, WorkflowStepResult } from "../../config/config-context"
import {
WorkflowConfigContext,
WorkflowStepConfigContext,
WorkflowStepResult,
} from "../../config/template-contexts/workflow"
import { resolveTemplateStrings, resolveTemplateString } from "../../template-string"
import { ConfigurationError, FilesystemError } from "../../exceptions"
import { posix, join } from "path"
Expand Down
Loading

0 comments on commit 6919bc5

Please sign in to comment.