-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathmeta.js
32 lines (32 loc) · 791 Bytes
/
meta.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
module.exports = {
prompts: {
name: {
type: "string",
required: true,
label: "Project name (kebab-case only)"
},
description: {
type: "string",
required: true,
label: "Project description",
default: "A Vue.js 2.0 library project"
},
author: {
type: "string",
label: "Author"
},
email: {
type: "string",
required: true,
label: "Email"
},
repos: {
type: "string",
required: true,
label: "Github repository URL",
default: "user/repository"
}
},
"skipInterpolation": "src/**/*.{html,vue}",
"completeMessage": "To get started and/or setup your automatic deployment, please read the contributing documentation: {{destDirName}}/.github/CONTRIBUTING.md"
}