wishthis/node_modules/fomantic-ui/tasks/check-install.js
2022-01-13 14:00:31 +01:00

27 lines
No EOL
607 B
JavaScript

/*******************************
* 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
};