Skip to content

Commit

Permalink
fix: context
Browse files Browse the repository at this point in the history
  • Loading branch information
klaascuvelier committed Nov 18, 2024
1 parent 0fa6649 commit 74b79e9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ export default async function deployExecutor(
}
const dist = joinPathFragments(
process.cwd(),
context.workspace.projects[context.projectName].targets.build.options
.outputPath,
context.projectsConfigurations.projects[context.projectName].targets
.build.options.outputPath,
);
const branch = execSync('git rev-parse --abbrev-ref HEAD')
.toString()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ export default async function deployExecutor(
}
const dist = joinPathFragments(
process.cwd(),
context.workspace.projects[context.projectName].targets.build.options
.outputPath,
context.projectsConfigurations.projects[context.projectName].targets
.build.options.outputPath,
);

const deployOptions = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ export default async function buildExecutor(
) {
try {
const buildTarget =
context.workspace.projects[context.projectName].targets.build;
context.projectsConfigurations.projects[context.projectName].targets
.build;
const outputPath = joinPathFragments(
workspaceRoot,
buildTarget.options.outputPath,
Expand Down

0 comments on commit 74b79e9

Please sign in to comment.