jasny/robo-extensions
最新稳定版本:v0.2.0
Composer 安装命令:
composer require jasny/robo-extensions
包简介
Custom tasks for RoboTask
README 文档
README
Installation
composer require jasny\robo-extensions
Usage
class RoboFile extends Robo\Tasks { use Jasny\Robo\loadTasks; ... }
LessTask
A version of Robo\Task\Assets\Less that supports passing options and using uri_root for less.php.
$this->taskLess(['www/less/main.less' => 'www/css/style.css']) ->compiler('less', [ 'base' => 'www', 'strictMath' => true ]) ->run();
BumpVersionTask
Bump the version in a json file.
Optionally the git tags are referenced to determine the new version.
$this->taskBumpVersion('composer.json') ->inc('minor') ->run(); $this->taskBumpVersion('composer.json') ->to('1.2.6') ->run(); // `to` also works for 'major', 'minor' and 'patch' $this->taskBumpVersion('composer.json') ->to('minor') ->run(); // Check the git tags $this->taskBumpVersion('composer.json') ->inc('patch') ->useGit() ->run();
统计信息
- 总下载量: 1.33k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-08-23