From 57b0792e1c1f6af266f3ca8cc93e50ea19e12a0a Mon Sep 17 00:00:00 2001 From: Inga Lovinde <52715130+inga-lovinde@users.noreply.github.com> Date: Tue, 10 Dec 2013 14:21:00 +0400 Subject: [PATCH] Implemented noop task --- BuildServer/lib/tasks/noop.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 BuildServer/lib/tasks/noop.js diff --git a/BuildServer/lib/tasks/noop.js b/BuildServer/lib/tasks/noop.js new file mode 100644 index 0000000..b34deb0 --- /dev/null +++ b/BuildServer/lib/tasks/noop.js @@ -0,0 +1,9 @@ +"use strict"; + +module.exports = function (params, processor) { + return { + process: function () { + processor.done(); + } + }; +};