UNPKG

619 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 "component_name": "",
17 "github_repository": "#{gitUser.name}/#{dirname}",
18 "author_name": "#{gitUser.name}",
19 "author_email": "#{gitUser.email}",
20 "author_url": "#{gitUser.url}"
21 },
22 mode: {
23 "ci/*.*": "755"
24 },
25 prefix: '~~~~',
26 suffix: '~~~~'
27}
\No newline at end of file