Add javascript builder

This commit is contained in:
Romain Neutron
2013-06-13 13:04:45 +02:00
parent bfa28e0fd0
commit b783577f1b
6 changed files with 137 additions and 15 deletions

View File

@@ -19,7 +19,8 @@ namespace KonsoleKommander;
use Alchemy\Phrasea\Core\Version;
use Alchemy\Phrasea\Command\UpgradeDBDatas;
use Alchemy\Phrasea\Command\Setup\Install;
use Alchemy\Phrasea\Command\Setup\LessCompile;
use Alchemy\Phrasea\Command\Setup\LessCompiler;
use Alchemy\Phrasea\Command\Setup\JavascriptBuilder;
use Alchemy\Phrasea\CLI;
use Alchemy\Phrasea\Command\Setup\CheckEnvironment;
@@ -63,7 +64,8 @@ try {
$app->command(new CheckEnvironment('check:system'));
$app->command(new Install('system:install'));
$app->command(new LessCompile('less:compile'));
$app->command(new LessCompiler());
$app->command(new JavascriptBuilder());
$result_code = is_int($app->run()) ? : 1;
} catch (\Exception $e) {