-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmeta.js
68 lines (66 loc) · 2.03 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
module.exports = {
prompts: {
project: {
type: 'string',
required: true,
message: 'Pretty Project name'
},
preprocessor: {
type: 'list',
message: 'Choose a css preprocessor',
choices: [
'stylus',
'scss'
]
},
eslint: {
type: 'confirm',
message: 'Use ESLint?'
},
apollo: {
type: 'confirm',
message: 'Include Vue Apollo and Graphql?'
}
},
filters: {
'client/assets/stylus/**/*': 'preprocessor === "stylus"',
'client/assets/scss/**/*': 'preprocessor === "scss"',
'client/pages/Apollo.vue': 'apollo === true',
'client/apollo/**/*': 'apollo === true',
'server/api.js': 'apollo === true',
'server/graphql/**/*': 'apollo === true',
'.eslintrc.js': 'eslint === true'
},
helpers: {
htmlTitle: ()=> '{{title}}',
htmlResourceHints: ()=> '{{{ renderResourceHints() }}}',
htmlStyles: ()=> '{{{ renderStyles() }}}',
htmlApollo: ()=> '<script>{{{ apollo }}}</script>',
htmlState: ()=> '{{{ renderState() }}}',
htmlScripts: ()=> '{{{ renderScripts() }}}',
year: ()=> new Date().getFullYear(),
preprocessorExtension({ data }) {
let ret
switch (data.root.preprocessor) {
case 'stylus':
ret = 'styl'
break
case 'scss':
ret = 'scss'
break
default:
break
}
return ret
}
},
skipInterpolation: [
'client/pages/Test.vue',
'client/pages/Apollo.vue'
],
completeMessage: `To get started:
{{#inPlace}}npm install && npm run dev{{else}}cd {{destDirName}} && npm install && npm run dev{{/inPlace}}
- or -
{{#inPlace}}yarn && npm run dev{{else}}cd {{destDirName}} && yarn && npm run dev{{/inPlace}}
More info in the README`
}