-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcli.js
executable file
·111 lines (106 loc) · 2.42 KB
/
cli.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#!/usr/bin/env node
'use strict';
var inquirer = require("inquirer");
var writeFile = require("fs").writeFile;
var questions = [
{
type: "input",
name: "name",
message: "What's the name of your webapp?",
validate: function( value ) {
if (value) {
return true;
} else {
return "What's the name of your webapp?";
}
}
},
{
type: "input",
name: "short_name",
message: "Short name?",
validate: function( value ) {
if (value) {
return true;
} else {
return "Short name?";
}
}
},
{
type: "input",
name: "background_color",
message: "Background color?",
validate: function( value ) {
if (value) {
return true;
} else {
return "Background color?";
}
}
},
{
type: "input",
name: "theme_color",
message: "Theme color?",
validate: function( value ) {
if (value) {
return true;
} else {
return "Theme color?";
}
}
},
{
type: "input",
name: "start_url",
message: "Start URL?",
validate: function( value ) {
if (value) {
return true;
} else {
return "Start URL?";
}
}
},
{
type: "list",
name: "orientation",
message: "Select the orientation:",
choices: [ "None", "portrait", "landscape" ],
filter: function( val ) { return val.toLowerCase(); }
},
{
type: "list",
name: "fullscreen",
message: "Select the fullscreen mode:",
choices: [ "Standalone", "Complete FullScreen", "As in browser" ],
filter: function( val ) { return val.toLowerCase(); }
}
];
inquirer.prompt( questions, function( answers ) {
answers["icons"] = [{
"src": "images/touch/icon-128x128.png",
"sizes": "128x128",
"type": "image/png"
}, {
"src": "images/touch/apple-touch-icon.png",
"sizes": "152x152",
"type": "image/png"
}, {
"src": "images/touch/ms-touch-icon-144x144-precomposed.png",
"sizes": "144x144",
"type": "image/png"
}, {
"src": "images/touch/chrome-touch-icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
}];
writeFile(`${__dirname}/manifest.json`, JSON.stringify(answers, null, 4), function(err) {
if(err) {
console.error(err);
} else {
console.log("Created a manifest.json in your cwd!");
}
});
});