#!/usr/bin/env node

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

'use strict'

const apemanBudConsts = require('apeman-bud-consts')

module.exports = apemanBudConsts({
  /** Names of consts to render */
  name: [
{{#each params.name}}    '{{{this}}}'{{#if @last}}{{else}},{{/if}}
{{/each}}
  ],
  suffix: "{{params.suffix}}"
})

{{{read _render}}}
