Skip to content

Commit

Permalink
feat(core): default outputs to both prepare and build targets
Browse files Browse the repository at this point in the history
  • Loading branch information
vsavkin committed Feb 11, 2021
1 parent b974ee0 commit 1a75fd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/workspace/src/tasks-runner/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export function getOutputsForTargetAndConfiguration(
return Array.isArray(options.outputPath)
? options.outputPath
: [options.outputPath];
} else if (target === 'build') {
} else if (target === 'build' || target === 'prepare') {
return [
`dist/${node.data.root}`,
`${node.data.root}/dist`,
Expand Down

0 comments on commit 1a75fd4

Please sign in to comment.