UNPKG

516 BJavaScriptView Raw
1'use strict'
2
3const path = require('path')
4
5module.exports = {
6 tmpl: path.resolve(__dirname, '../asset/tmpl'),
7 pattern: [
8 '**/.*.tmpl',
9 '**/*.tmpl',
10 '**/.*.bud.tmpl',
11 '**/.*.hbs.tmpl'
12 ],
13 ask: {
14 package_name: '#{dirname}',
15 package_description: '',
16 github_repository: '#{gitUser.name}/#{dirname}',
17 author_name: '#{gitUser.name}',
18 author_email: '#{gitUser.email}',
19 author_url: '#{gitUser.url}'
20 },
21 mode: {
22 'ci/*.*': '755'
23 },
24 prefix: '~~~~',
25 suffix: '~~~~'
26}