File tree Expand file tree Collapse file tree 2 files changed +47
-47
lines changed
Expand file tree Collapse file tree 2 files changed +47
-47
lines changed Original file line number Diff line number Diff line change @@ -60,29 +60,29 @@ const cli = meow(`
6060 $ dframe cat.png --frame "iPhone 6" --frame "iPhone 7"
6161 $ dframe cat.png --frame "iphone 6","iphone 7"
6262 ` ,
63- {
64- flags : {
65- help : {
66- alias : 'h' ,
67- } ,
68- delay : {
69- default : 0 ,
70- } ,
71- devices : {
72- default : false ,
73- } ,
74- output : {
75- type : 'string' ,
76- alias : 'o' ,
77- default : '.' ,
78- } ,
79- debug : {
80- type : 'boolean' ,
81- alias : 'd' ,
82- default : false ,
63+ {
64+ flags : {
65+ help : {
66+ alias : 'h' ,
67+ } ,
68+ delay : {
69+ default : 0 ,
70+ } ,
71+ devices : {
72+ default : false ,
73+ } ,
74+ output : {
75+ type : 'string' ,
76+ alias : 'o' ,
77+ default : '.' ,
78+ } ,
79+ debug : {
80+ type : 'boolean' ,
81+ alias : 'd' ,
82+ default : false ,
83+ } ,
8384 } ,
84- } ,
85- }
85+ }
8686) ;
8787
8888const framesRepo = cli . pkg . devDependencies [ 'deviceframe-frames' ] ;
Original file line number Diff line number Diff line change @@ -21,36 +21,36 @@ const cli = meow(`
2121 --count, -c Run on limited number of frames. Ex: '-c 5' will do 5 frames then stop
2222 --parallel, -p Run N multiple workers at once. Ex: '-p 4' if you have 4 cores
2323` ,
24- {
25- flags : {
26- help : {
27- alias : 'h' ,
28- } ,
29- write : {
30- alias : 'w' ,
31- default : false ,
32- } ,
33- count : {
34- type : 'number' ,
35- alias : 'c' ,
36- default : 0 ,
37- } ,
38- parallel : {
39- alias : 'p' ,
40- default : false ,
41- } ,
42- output : {
43- type : 'string' ,
44- alias : 'o' ,
45- default : '.' ,
46- } ,
24+ {
25+ flags : {
26+ help : {
27+ alias : 'h' ,
28+ } ,
29+ write : {
30+ alias : 'w' ,
31+ default : false ,
32+ } ,
33+ count : {
34+ type : 'number' ,
35+ alias : 'c' ,
36+ default : 0 ,
37+ } ,
38+ parallel : {
39+ alias : 'p' ,
40+ default : false ,
41+ } ,
42+ output : {
43+ type : 'string' ,
44+ alias : 'o' ,
45+ default : '.' ,
46+ } ,
4747 // debug: {
4848 // type: 'boolean',
4949 // alias: 'd',
5050 // default: false,
5151 // }
52- } ,
53- } ) ;
52+ } ,
53+ } ) ;
5454
5555const start = new Date ( ) . getTime ( ) ;
5656
You can’t perform that action at this time.
0 commit comments