diff options
author | Frédéric Guillot <fred@kanboard.net> | 2019-07-25 13:05:08 -0700 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2019-07-25 13:05:08 -0700 |
commit | d42dd0705481bacf38c8d2a6c915398046ead014 (patch) | |
tree | ba8b448becb5c8ed66f69b37d6daddde6281ff11 /app/ServiceProvider/CommandProvider.php | |
parent | 9ae185c18eb06e3ce7e2daea0c61e6f6478bdca9 (diff) |
Remove dependency on nodejs and gulp
Diffstat (limited to 'app/ServiceProvider/CommandProvider.php')
-rw-r--r-- | app/ServiceProvider/CommandProvider.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/ServiceProvider/CommandProvider.php b/app/ServiceProvider/CommandProvider.php index 77c8b395..f08f76cc 100644 --- a/app/ServiceProvider/CommandProvider.php +++ b/app/ServiceProvider/CommandProvider.php @@ -25,6 +25,7 @@ use Kanboard\Console\TransitionExportCommand; use Kanboard\Console\VersionCommand; use Kanboard\Console\WorkerCommand; use Kanboard\Console\CssCommand; +use Kanboard\Console\JsCommand; use Pimple\Container; use Pimple\ServiceProviderInterface; use Symfony\Component\Console\Application; @@ -69,6 +70,7 @@ class CommandProvider implements ServiceProviderInterface $application->add(new DatabaseVersionCommand($container)); $application->add(new VersionCommand($container)); $application->add(new CssCommand($container)); + $application->add(new JsCommand($container)); $container['cli'] = $application; return $container; |