forked from myronliu347/library-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmeta.js
More file actions
29 lines (29 loc) · 721 Bytes
/
meta.js
File metadata and controls
29 lines (29 loc) · 721 Bytes
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
module.exports = {
helpers: {
escape: function(value) {
return value.replace(/'/g, ''');
}
},
prompts: {
name: {
'type': 'string',
'required': true,
'message': 'Project name'
},
description: {
'type': 'string',
'required': false,
'message': 'Project description',
'default': 'Muse-UI plugin'
},
author: {
'type': 'string',
'message': 'Author'
},
globalName: {
type: 'String',
message: 'window.XXX'
}
},
completeMessage: '{{#inPlace}}To get started:\n\n npm install # Or yarn\n npm run dev{{else}}To get started:\n\n cd {{destDirName}}\n npm install # Or yarn\n npm run dev{{/inPlace}}'
};