@@ -30,28 +30,28 @@ if (args.help) {
30
30
console . log ( 'Quasar Icon Genie: v.' + info . version )
31
31
console . log ( ' License: MIT' )
32
32
console . log ( `
33
- The Icon Genie is a node utility to create a batch of icons for your app.
33
+ The Icon Genie is a node utility to create a batch of icons for your app.
34
34
Designed to work seamlessly with the Quasar Framework, but probably
35
35
useful for other build pipelines.
36
-
37
- Flags:
36
+
37
+ Flags:
38
38
-p, --preset Choose a preset output or make your own
39
39
[minify|splash|svg|svgduochrome|favicon]
40
- [spa|pwa|cordova|proton| electron|bex|kitchensink|custom]
40
+ [spa|pwa|cordova|electron|bex|kitchensink|custom]
41
41
-s, --source Your source image as a large square png
42
42
-t, --target The destination directory for the files created
43
43
-o, --options Path to file that overrides defaults (if custom)
44
- -m, --minify Minify strategy to use.
44
+ -m, --minify Minify strategy to use.
45
45
[pngcrush|pngquant|optipng|zopfli]
46
46
-d, --mode Minify mode if minify preset [folder|singlefile]
47
47
-v, --version Display version information
48
48
-h, --help Display this information
49
- -l, --validate Check the image is valid for processing
50
-
49
+ -l, --validate Check the image is valid for processing
50
+
51
51
Usage:
52
-
53
- $ icongenie -p=kitchensink -s=icon-1280x1280.png -t=./outputFolder -m=pngquant
54
- $ icongenie -p=minify -s=icon-1240x1240.png -t=./output -m=pngquant -d=singlefile
52
+
53
+ $ icongenie -p=kitchensink -s=icon-1280x1280.png -t=./outputFolder -m=pngquant
54
+ $ icongenie -p=minify -s=icon-1240x1240.png -t=./output -m=pngquant -d=singlefile
55
55
` )
56
56
process . exit ( 0 )
57
57
}
@@ -121,9 +121,6 @@ switch (args.preset) {
121
121
case 'cordova' :
122
122
icongenie . cordova ( args . source , args . target , args . minify )
123
123
break
124
- case 'proton' :
125
- icongenie . proton ( args . source , args . target , args . minify )
126
- break
127
124
case 'electron' :
128
125
icongenie . electron ( args . source , args . target , args . minify )
129
126
break
0 commit comments