#!/usr/bin/env node

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

"use strict";

const apemanBudBin = require('apeman-bud-bin');

module.exports = [
    // _helper.sh
    apemanBudBin.envHelper(),
    // production.sh
    apemanBudBin.env('production'),
    // development.sh
    apemanBudBin.env('development'),
    // staging.sh
    apemanBudBin.env('staging'),
    // test.sh
    apemanBudBin.env('test')
];

{{{read _render}}}
