UNPKG

@lando/backdrop

Version:

A Lando plugin that provides a tight integration with Backdrop.

14 lines (10 loc) 320 B
'use strict'; module.exports = options => { // start with defaults const tooling = require('./get-tooling-defaults'); // add backdrush if (options.backdrush !== false) tooling.drush = {service: 'appserver'}; // add bee if (options.bee !== false) tooling.bee = {service: 'appserver'}; return tooling; };