/
githubmirror
/
Semantic-UI
Обзор
Документация
Войти
/
githubmirror
/
Semantic-UI
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.2.8
tasks/admin/release.js
29 строк
719 B
jlukic
Fix admin tasks to use commit SHA of last release #1607
24 фев 2015, 19:45
24 фев 2015, 19:45
e3f66ec
Код
Авторство
О чём код?
/******************************* Release *******************************/ /* This task update all SUI individual component repos with new versions of components * Initializes repositories with current versions * Creates local files at ../distributions/ with each repo for release */ var runSequence = require('run-sequence') ; /* Release All */ module.exports = function(callback) { runSequence( //'build', // build Semantic 'init distributions', // sync with current github version 'create distributions', // update each repo with changes from master repo 'init components', // sync with current github version 'create components', // update each repo callback ); };