From a1dd443e0fa0e9cf1fbd301eff91f0a6dd49c2d1 Mon Sep 17 00:00:00 2001 From: notlee Date: Wed, 6 May 2020 15:19:59 +0100 Subject: [PATCH] Remove `watchable` task export. It is unused. --- lib/tasks/init.js | 2 -- lib/tasks/install.js | 2 -- lib/tasks/verify.js | 2 -- 3 files changed, 6 deletions(-) diff --git a/lib/tasks/init.js b/lib/tasks/init.js index 2c2d5af3..2a58c838 100644 --- a/lib/tasks/init.js +++ b/lib/tasks/init.js @@ -4,5 +4,3 @@ const {run} = require('../helpers/command-line'); module.exports = function () { return run('npm', ['init', 'origami-component']); }; - -module.exports.watchable = false; diff --git a/lib/tasks/install.js b/lib/tasks/install.js index ceed3a5a..b7286bb6 100644 --- a/lib/tasks/install.js +++ b/lib/tasks/install.js @@ -22,5 +22,3 @@ module.exports = function (cfg) { concurrent: true }).run(); }; - -module.exports.watchable = false; diff --git a/lib/tasks/verify.js b/lib/tasks/verify.js index 1093f4d9..088af158 100644 --- a/lib/tasks/verify.js +++ b/lib/tasks/verify.js @@ -25,5 +25,3 @@ module.exports = function (cfg) { ) .run(); }; - -module.exports.watchable = false;