aboutsummaryrefslogtreecommitdiff
path: root/semantic/tasks/check-install.js
diff options
context:
space:
mode:
authorFuwn <[email protected]>2020-12-14 23:29:56 -0800
committerFuwn <[email protected]>2020-12-14 23:29:56 -0800
commit002eb44eee98dc838bc854b945ab0cbf4884dd57 (patch)
tree428ae460c79baf32fba8ecf16e6fe02a88c3b971 /semantic/tasks/check-install.js
parent:star: (diff)
downloadme-rewrite-angular.tar.xz
me-rewrite-angular.zip
Diffstat (limited to 'semantic/tasks/check-install.js')
-rw-r--r--semantic/tasks/check-install.js27
1 files changed, 0 insertions, 27 deletions
diff --git a/semantic/tasks/check-install.js b/semantic/tasks/check-install.js
deleted file mode 100644
index a82297e..0000000
--- a/semantic/tasks/check-install.js
+++ /dev/null
@@ -1,27 +0,0 @@
-/*******************************
- * Check Install
- *******************************/
-
-var
- // node dependencies
- gulp = require('gulp'),
- console = require('better-console'),
- isSetup = require('./config/project/install').isSetup,
-
- install = require('./install'),
- watch = require('./watch')
-;
-
-// export task
-module.exports = function (callback) {
-
- setTimeout(function () {
- if (!isSetup()) {
- console.log('Starting install...');
- install(callback);
- } else {
- watch(callback);
- }
- }, 50); // Delay to allow console.clear to remove messages from check event
-
-}; \ No newline at end of file