Skip to content

Commit

Permalink
fix(core): remove warning for invalid outputs (#12589)
Browse files Browse the repository at this point in the history
  • Loading branch information
FrozenPandaz committed Oct 13, 2022
1 parent e5570a7 commit 773c0cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nx/src/tasks-runner/utils.ts
Expand Up @@ -145,7 +145,7 @@ export function getOutputsForTargetAndConfiguration(
validateOutputs(targetConfiguration.outputs);
} catch (error) {
if (error instanceof InvalidOutputsError) {
logger.warn(error.message);
// TODO(v16): start warning for invalid outputs
targetConfiguration.outputs = transformLegacyOutputs(
node.data.root,
error
Expand Down

1 comment on commit 773c0cb

@vercel
Copy link

@vercel vercel bot commented on 773c0cb Oct 13, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

nx-dev – ./

nx.dev
nx-dev-git-master-nrwl.vercel.app
nx-dev-nrwl.vercel.app
nx-five.vercel.app

Please sign in to comment.