Refactoring commands for an easier use.

This commit is contained in:
marco
2015-07-20 18:10:13 +02:00
parent eb50d2e536
commit fb5deb7d29
3 changed files with 27 additions and 22 deletions

View File

@ -1,7 +1,13 @@
<?php
class RoboFile extends \Robo\Tasks {
function install() {
$this->_exec('./composer.phar install');
$this->_exec('npm install');
}
function update() {
$this->_exec('./composer.phar update');
$this->_exec('npm update');
}
function testUnit() {