/
githubmirror
/
Semantic-UI
Обзор
Документация
Войти
/
githubmirror
/
Semantic-UI
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.2.13
tasks/check-install.js
28 строк
603 B
jlukic
Iteration on install
31 янв 2015, 00:05
31 янв 2015, 00:05
93cd582
Код
Авторство
О чём код?
/******************************* Check Install *******************************/ var // node dependencies gulp = require('gulp'), fs = require('fs'), console = require('better-console'), install = require('./config/project/install') ; // export task module.exports = function() { setTimeout(function() { if( !install.isSetup() ) { console.log('Starting install...'); gulp.start('install'); return; } else { gulp.start('watch'); } }, 50); // Delay to allow console.clear to remove messages from check event };