diff --git a/packages/nx/src/executors/noop/noop.impl.ts b/packages/nx/src/executors/noop/noop.impl.ts new file mode 100644 index 0000000000..3d8be5edac --- /dev/null +++ b/packages/nx/src/executors/noop/noop.impl.ts @@ -0,0 +1,3 @@ +export default async function () { + return { success: true }; +} diff --git a/packages/nx/src/executors/noop/schema.json b/packages/nx/src/executors/noop/schema.json new file mode 100644 index 0000000000..b2b80b665c --- /dev/null +++ b/packages/nx/src/executors/noop/schema.json @@ -0,0 +1,9 @@ +{ + "title": "Noop", + "description": "An executor that does nothing", + "type": "object", + "cli": "nx", + "outputCapture": "pipe", + "properties": {}, + "additionalProperties": false +}