Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/district09/robo-digipolis-package-drupal8
Extension of robo-digipolis-package with Drupal 8 specific compile (for themes) and package tasks and commands
https://github.com/district09/robo-digipolis-package-drupal8
d09check22 drupal8 package robo robo-digipolis-package robo-tasks web
Last synced: 2 months ago
JSON representation
Extension of robo-digipolis-package with Drupal 8 specific compile (for themes) and package tasks and commands
- Host: GitHub
- URL: https://github.com/district09/robo-digipolis-package-drupal8
- Owner: district09
- License: mit
- Created: 2017-01-24T14:13:41.000Z (almost 8 years ago)
- Default Branch: develop
- Last Pushed: 2024-04-23T08:19:37.000Z (8 months ago)
- Last Synced: 2024-09-27T10:41:24.538Z (3 months ago)
- Topics: d09check22, drupal8, package, robo, robo-digipolis-package, robo-tasks, web
- Language: PHP
- Homepage:
- Size: 41 KB
- Stars: 0
- Watchers: 6
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Robo Digipolis Package Drupal8
Drupal 8 Packaging/Compile tasks for Robo Task Runner
[![Latest Stable Version](https://poser.pugx.org/digipolisgent/robo-digipolis-package-drupal8/v/stable)](https://packagist.org/packages/digipolisgent/robo-digipolis-package-drupal8)
[![Latest Unstable Version](https://poser.pugx.org/digipolisgent/robo-digipolis-package-drupal8/v/unstable)](https://packagist.org/packages/digipolisgent/robo-digipolis-package-drupal8)
[![Total Downloads](https://poser.pugx.org/digipolisgent/robo-digipolis-package-drupal8/downloads)](https://packagist.org/packages/digipolisgent/robo-digipolis-package-drupal8)
[![License](https://poser.pugx.org/digipolisgent/robo-digipolis-package-drupal8/license)](https://packagist.org/packages/digipolisgent/robo-digipolis-package-drupal8)[![Build Status](https://travis-ci.org/digipolisgent/robo-digipolis-package-drupal8.svg?branch=develop)](https://travis-ci.org/digipolisgent/robo-digipolis-package-drupal8)
[![Maintainability](https://api.codeclimate.com/v1/badges/8f19beedf27fd62dcdf5/maintainability)](https://codeclimate.com/github/digipolisgent/robo-digipolis-package-drupal8/maintainability)
[![Test Coverage](https://api.codeclimate.com/v1/badges/8f19beedf27fd62dcdf5/test_coverage)](https://codeclimate.com/github/digipolisgent/robo-digipolis-package-drupal8/test_coverage)
[![PHP 7 ready](https://php7ready.timesplinter.ch/digipolisgent/robo-digipolis-package-drupal8/develop/badge.svg)](https://travis-ci.org/digipolisgent/robo-digipolis-package-drupal8)## Commands
This package provides default commands wich you can use in your `RoboFile.php`
like so:```php
class RoboFile extends \Robo\Tasks
{
use \DigipolisGent\Robo\Task\Package\Drupal8\Commands\loadCommands;
}
```### digipolis:package-project
`vendor/bin/robo digipolis:package-drupal8 FILE [DIR] [OPTIONS]`
#### Arguments
##### FILE
The name of the archive file that will be created.
##### DIR
The directory to package. Defaults to the config value `digipolis.root.project`
if it is set (see for
more information), or the current working directory otherwise.#### Options
##### --ignore, -i
Comma separated list of filenames to ignore, has sensible defaults for Drupal 8
projects### digipolis:themes-clean-drupal8
`vendor/bin/robo digipolis:themes-clean-drupal8 [THEMES] [DIRS]`
#### Arguments
##### THEMES
Comma-seperated list of Drupal theme machine names. Defaults to the keys of the
digipolis.themes.drupal8 config value.##### DIRS
Comma-seperated list of directories in which to search for the themes. Defaults
to the digipolis.root.project and digipolis.root.web config values, or the
current working directory if that is not set.### digipolis:themes-compile-drupal8
`vendor/bin/robo digipolis:themes-compile-drupal8 [THEMES] [DIRS]`
#### Arguments
##### THEMES
Comma-seperated list of Drupal theme machine names, or comma separated list in
the format `themename:command` where `themename` is the name of the theme to
compile and `command` is the name of the grunt/gulp command to execute (defaults
to `compile`). Defaults to the digipolis.themes.drupal8 config value.##### DIRS
Comma-seperated list of directories in which to search for the themes. Defaults
to the digipolis.root.project and digipolis.root.web config values, or the
current working directory if that is not set.