feat(misc): add noop executor for cases when we need to define a target hat does nothing

This commit is contained in:
Victor Savkin 2022-05-03 13:52:37 -04:00
parent e6738abc9f
commit 942e89a19d
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,3 @@
export default async function () {
return { success: true };
}

View File

@ -0,0 +1,9 @@
{
"title": "Noop",
"description": "An executor that does nothing",
"type": "object",
"cli": "nx",
"outputCapture": "pipe",
"properties": {},
"additionalProperties": false
}