stack-analyze 1.3.1 → 1.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/cli.js +12 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ stack-analyze all version and notable changes, fixed, remove and new additions i
|
|
|
4
4
|
|
|
5
5
|
## generation 4 (ver. 1.3.0 - )
|
|
6
6
|
|
|
7
|
+
### version 1.3.2
|
|
8
|
+
#### Added
|
|
9
|
+
- title for stack menu tools
|
|
10
|
+
|
|
7
11
|
### version 1.3.1
|
|
8
12
|
#### Added
|
|
9
13
|
- seyyahi2 wallpapers (this pack is from album app)
|
package/cli.js
CHANGED
|
@@ -34,6 +34,8 @@ const exitCli = () => {
|
|
|
34
34
|
* @returns {Promise<void>}
|
|
35
35
|
*/
|
|
36
36
|
async function webOpts() {
|
|
37
|
+
console.info(colors.yellow(figlet.textSync("web options")));
|
|
38
|
+
|
|
37
39
|
const { web } = await inquirer.prompt({
|
|
38
40
|
type: "list",
|
|
39
41
|
pageSize,
|
|
@@ -52,6 +54,8 @@ async function webOpts() {
|
|
|
52
54
|
* @returns {Promise<void>}
|
|
53
55
|
*/
|
|
54
56
|
async function infoOpts() {
|
|
57
|
+
console.info(colors.yellow(figlet.textSync("info options")));
|
|
58
|
+
|
|
55
59
|
const { info } = await inquirer.prompt({
|
|
56
60
|
type: "list",
|
|
57
61
|
pageSize,
|
|
@@ -70,6 +74,8 @@ async function infoOpts() {
|
|
|
70
74
|
* @returns {Promise<void>}
|
|
71
75
|
*/
|
|
72
76
|
async function queryOpts() {
|
|
77
|
+
console.info(colors.yellow(figlet.textSync("query options")));
|
|
78
|
+
|
|
73
79
|
const { query } = await inquirer.prompt({
|
|
74
80
|
type: "list",
|
|
75
81
|
pageSize,
|
|
@@ -88,6 +94,8 @@ async function queryOpts() {
|
|
|
88
94
|
* @returns {void}
|
|
89
95
|
*/
|
|
90
96
|
async function wallpapersOpts() {
|
|
97
|
+
console.info(colors.yellow(figlet.textSync("wallpapers")));
|
|
98
|
+
|
|
91
99
|
const { wallpaper } = await inquirer.prompt({
|
|
92
100
|
type: "list",
|
|
93
101
|
pageSize,
|
|
@@ -106,6 +114,8 @@ async function wallpapersOpts() {
|
|
|
106
114
|
* @returns {Promise<void>}
|
|
107
115
|
*/
|
|
108
116
|
async function utilityOpts() {
|
|
117
|
+
console.info(colors.yellow(figlet.textSync("utility options")));
|
|
118
|
+
|
|
109
119
|
const { utility } = await inquirer.prompt({
|
|
110
120
|
type: "list",
|
|
111
121
|
pageSize,
|
|
@@ -124,6 +134,8 @@ async function utilityOpts() {
|
|
|
124
134
|
* @returns {Promise<void>}
|
|
125
135
|
*/
|
|
126
136
|
async function aboutOpts() {
|
|
137
|
+
console.info(colors.yellow(figlet.textSync("About Menu")));
|
|
138
|
+
|
|
127
139
|
const { about } = await inquirer.prompt({
|
|
128
140
|
type: "list",
|
|
129
141
|
pageSize,
|
package/package.json
CHANGED