Skip to content

Commit

Permalink
fix: forward params of nxv-e2e target
Browse files Browse the repository at this point in the history
  • Loading branch information
BioPhoton committed Oct 15, 2024
1 parent 8e0591a commit 8348d94
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,10 @@ export function getEnvTargets(
executor: `${PACKAGE_NAME}:${EXECUTOR_ENVIRONMENT_TEARDOWN}`,
},
[TARGET_ENVIRONMENT_E2E]: {
dependsOn: targetNames,
dependsOn: targetNames.map((targetName) => ({
target: targetName,
params: 'forward'
})),
executor: `${PACKAGE_NAME}:${EXECUTOR_ENVIRONMENT_TEARDOWN}`,
},
};
Expand Down

0 comments on commit 8348d94

Please sign in to comment.