/
githubmirror
/
Semantic-UI
Обзор
Документация
Войти
/
githubmirror
/
Semantic-UI
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.2
tasks/admin/publish.js
25 строк
507 B
jlukic
Fix admin tasks to use commit SHA of last release #1607
24 фев 2015, 19:45
24 фев 2015, 19:45
e3f66ec
Код
Авторство
О чём код?
/******************************* Release All *******************************/ /* This task update all SUI individual component repos with new versions of components * Commits changes from create components to GitHub and Tags */ var runSequence = require('run-sequence') ; /* Release All */ module.exports = function(callback) { runSequence( 'update distributions', // commit less/css versions to github 'update components', // commit components to github callback ); };