#!/usr/bin/env node

/**
 * Bud file for ci.
 * Executing this file renders scripts to run ci basic tasks.
 *
 * Generated by {{generator}} on {{today}},
 * from a template provided by {{pkg.name}}.
 *
 * @see https://github.com/coz-repo/coz
 */

"use strict";

const apemanBudCi = require('apeman-bud-ci');

module.exports = apemanBudCi.byNames([
{{#each params.names}}    '{{this}}'{{#if @last}}{{else}},
{{/if}}{{/each}}
], {cwd: '..'});

{{{read _render}}}