-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-storybook.log
2949 lines (2948 loc) · 480 KB
/
build-storybook.log
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
$ build-storybook --output-dir C:\Users\ferna\AppData\Local\Temp\chromatic--101196-5s13H7NP1GkF
info @storybook/react v6.1.21
info
info => Cleaning outputDir C:\Users\ferna\AppData\Local\Temp\chromatic--101196-5s13H7NP1GkF
info => Using prebuilt manager
info => Building preview..
info => Loading preview config..
info => Loading presets
info => Loading 1 config file in "./.storybook"
info => Loading 7 other files in "./.storybook"
info => Adding stories defined in ".storybook\main.js"
info => Using default Webpack setup
info => Compiling preview..
<s> [webpack.Progress] 0% compiling
<s> [webpack.Progress] 10% building 0/0 modules 0 active
<s> [webpack.Progress] 10% building 0/1 modules 1 active multi C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\core\dist\server\common\polyfills.js C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\core\dist\server\preview\globals.js C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\.storybook\storybook-init-framework-entry.js C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\common\config.js-generated-other-entry.js C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\config.js-generated-other-entry.js C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-links\dist\preset\addDecorator.js-generated-other-entry.js C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\preset\addDecorator.js-generated-other-entry.js C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\preset\addArgs.js-generated-other-entry.js C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-backgrounds\dist\preset\addDecorator.js-generated-other-entry.js C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-backgrounds\dist\preset\addParameter.js-generated-other-entry.js C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\.storybook\preview.js-generated-config-entry.js C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\.storybook\generated-stories-entry.js
<s> [webpack.Progress] 10% building 1/1 modules 0 active
<s> [webpack.Progress] 10% building 1/2 modules 1 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\babel-loader\lib\index.js??ref--4-0!C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\.storybook\storybook-init-framework-entry.js
<s> [webpack.Progress] 10% building 1/3 modules 2 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\babel-loader\lib\index.js??ref--4-0!C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\.storybook\preview.js-generated-config-entry.js
<s> [webpack.Progress] 10% building 1/4 modules 3 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\babel-loader\lib\index.js??ref--4-0!C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\.storybook\generated-stories-entry.js
<s> [webpack.Progress] 10% building 1/5 modules 4 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-links\dist\preset\addDecorator.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 1/6 modules 5 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-backgrounds\dist\preset\addDecorator.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 1/7 modules 6 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-backgrounds\dist\preset\addParameter.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 1/8 modules 7 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\preset\addDecorator.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 1/9 modules 8 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\preset\addArgs.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 1/10 modules 9 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\common\config.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 1/11 modules 10 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\config.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 2/11 modules 9 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\config.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 3/11 modules 8 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\config.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 4/11 modules 7 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\config.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 5/11 modules 6 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\config.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 6/11 modules 5 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\config.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 7/11 modules 4 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\config.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 8/11 modules 3 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\babel-loader\lib\index.js??ref--4-0!C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\.storybook\generated-stories-entry.js
<s> [webpack.Progress] 10% building 8/12 modules 4 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\core\dist\server\common\polyfills.js
<s> [webpack.Progress] 10% building 8/13 modules 5 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\core\dist\server\preview\globals.js
<s> [webpack.Progress] 10% building 8/14 modules 6 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-links\dist\preset\addDecorator.js
<s> [webpack.Progress] 10% building 8/15 modules 7 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-backgrounds\dist\preset\addDecorator.js
<s> [webpack.Progress] 10% building 8/16 modules 8 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-backgrounds\dist\preset\addParameter.js
<s> [webpack.Progress] 10% building 8/17 modules 9 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\preset\addDecorator.js
<s> [webpack.Progress] 10% building 8/18 modules 10 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\preset\addArgs.js
<s> [webpack.Progress] 10% building 8/19 modules 11 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\common\config.js
<s> [webpack.Progress] 10% building 8/20 modules 12 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\config.js
<s> [webpack.Progress] 11% building 9/20 modules 11 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\config.js
<s> [webpack.Progress] 11% building 10/20 modules 10 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\config.js
<s> [webpack.Progress] 11% building 11/20 modules 9 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\config.js
<s> [webpack.Progress] 11% building 12/20 modules 8 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\config.js
<s> [webpack.Progress] 11% building 13/20 modules 7 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\config.js
<s> [webpack.Progress] 11% building 14/20 modules 6 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\config.js
<s> [webpack.Progress] 11% building 15/20 modules 5 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\config.js
<s> [webpack.Progress] 11% building 16/20 modules 4 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\config.js
<s> [webpack.Progress] 12% building 17/20 modules 3 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\babel-loader\lib\index.js??ref--4-0!C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\.storybook\generated-stories-entry.js
<s> [webpack.Progress] 12% building 18/20 modules 2 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\babel-loader\lib\index.js??ref--4-0!C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\.storybook\generated-stories-entry.js
<s> [webpack.Progress] 12% building 19/20 modules 1 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\babel-loader\lib\index.js??ref--4-0!C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\.storybook\generated-stories-entry.js
<s> [webpack.Progress] 12% building 20/20 modules 0 active
<s> [webpack.Progress] 12% building 20/21 modules 1 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\src sync /^\.(?:(?:^|[\\/]|(?:(?:(?!(?:^|[\\/])\.).)*?)[\\/])(?!\.)(?=.)[^\\/]*?\.stories\.mdx)$/
<s> [webpack.Progress] 12% building 20/22 modules 2 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\src sync /^\.(?:(?:^|[\\/]|(?:(?:(?!(?:^|[\\/])\.).)*?)[\\/])(?!\.)(?=.)[^\\/]*?\.stories\.(js|jsx|ts|tsx))$/
<s> [webpack.Progress] 12% building 20/23 modules 3 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\babel-loader\lib\index.js??ref--4-0!C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\.storybook\preview.js
<s> [webpack.Progress] 12% building 20/24 modules 4 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-links\dist\index.js
<s> [webpack.Progress] 12% building 20/25 modules 5 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\index.js
<s> [webpack.Progress] 12% building 20/26 modules 6 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\common\enhanceArgTypes.js
<s> [webpack.Progress] 12% building 20/27 modules 7 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\extractArgTypes.js
<s> [webpack.Progress] 12% building 20/28 modules 8 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\jsxDecorator.js
<s> [webpack.Progress] 12% building 21/28 modules 7 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\jsxDecorator.js
<s> [webpack.Progress] 12% building 22/28 modules 6 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\jsxDecorator.js
<s> [webpack.Progress] 12% building 23/28 modules 5 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\jsxDecorator.js
<s> [webpack.Progress] 12% building 23/29 modules 6 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.object.keys.js
<s> [webpack.Progress] 12% building 23/30 modules 7 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.symbol.js
<s> [webpack.Progress] 12% building 23/31 modules 8 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.object.get-own-property-descriptor.js
<s> [webpack.Progress] 12% building 23/32 modules 9 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.array.filter.js
<s> [webpack.Progress] 12% building 23/33 modules 10 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.array.for-each.js
<s> [webpack.Progress] 12% building 23/34 modules 11 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\web.dom-collections.for-each.js
<s> [webpack.Progress] 12% building 23/35 modules 12 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.object.get-own-property-descriptors.js
<s> [webpack.Progress] 12% building 23/36 modules 13 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.object.define-properties.js
<s> [webpack.Progress] 12% building 23/37 modules 14 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.object.define-property.js
<s> [webpack.Progress] 12% building 24/37 modules 13 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.object.define-property.js
<s> [webpack.Progress] 13% building 25/37 modules 12 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.object.define-property.js
<s> [webpack.Progress] 13% building 25/38 modules 13 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\core\node_modules\webpack\buildin\module.js
<s> [webpack.Progress] 13% building 26/38 modules 12 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\core\node_modules\webpack\buildin\module.js
<s> [webpack.Progress] 13% building 27/38 modules 11 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\core\node_modules\webpack\buildin\module.js
<s> [webpack.Progress] 13% building 28/38 modules 10 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\core\node_modules\webpack\buildin\module.js
<s> [webpack.Progress] 13% building 29/38 modules 9 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\core\node_modules\webpack\buildin\module.js
<s> [webpack.Progress] 13% building 30/38 modules 8 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\core\node_modules\webpack\buildin\module.js
<s> [webpack.Progress] 13% building 31/38 modules 7 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\core\node_modules\webpack\buildin\module.js
<s> [webpack.Progress] 13% building 32/38 modules 6 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\core\node_modules\webpack\buildin\module.js
<s> [webpack.Progress] 13% building 33/38 modules 5 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\core\node_modules\webpack\buildin\module.js
<s> [webpack.Progress] 14% building 34/38 modules 4 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\core\node_modules\webpack\buildin\module.js
<s> [webpack.Progress] 14% building 35/38 modules 3 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\core\node_modules\webpack\buildin\module.js
<s> [webpack.Progress] 14% building 36/38 modules 2 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\core\node_modules\webpack\buildin\module.js
<s> [webpack.Progress] 14% building 37/38 modules 1 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\core\node_modules\webpack\buildin\module.js
<s> [webpack.Progress] 14% building 38/38 modules 0 active
<s> [webpack.Progress] 14% building 38/39 modules 1 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\constants.js
<s> [webpack.Progress] 14% building 38/40 modules 2 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-links\dist\preview.js
<s> [webpack.Progress] 14% building 38/41 modules 3 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.array.slice.js
<s> [webpack.Progress] 14% building 38/42 modules 4 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.object.freeze.js
<s> [webpack.Progress] 14% building 38/43 modules 5 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\common\normalizeArgTypes.js
<s> [webpack.Progress] 14% building 38/44 modules 6 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\client-logger\dist\index.js
<s> [webpack.Progress] 14% building 38/45 modules 7 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\client-api\dist\index.js
<s> [webpack.Progress] 14% building 38/46 modules 8 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\extractProps.js
<s> [webpack.Progress] 14% building 38/47 modules 9 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\shared.js
<s> [webpack.Progress] 14% building 38/48 modules 10 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\regenerator-runtime\runtime.js
<s> [webpack.Progress] 14% building 38/49 modules 11 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.object.assign.js
<s> [webpack.Progress] 14% building 38/50 modules 12 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.regexp.exec.js
<s> [webpack.Progress] 14% building 38/51 modules 13 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.regexp.to-string.js
<s> [webpack.Progress] 14% building 38/52 modules 14 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.regexp.constructor.js
<s> [webpack.Progress] 14% building 38/53 modules 15 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\mapValues.js
<s> [webpack.Progress] 14% building 39/53 modules 14 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\mapValues.js
<s> [webpack.Progress] 14% building 40/53 modules 13 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\mapValues.js
<s> [webpack.Progress] 14% building 41/53 modules 12 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\mapValues.js
<s> [webpack.Progress] 15% building 42/53 modules 11 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\mapValues.js
<s> [webpack.Progress] 15% building 43/53 modules 10 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\mapValues.js
<s> [webpack.Progress] 15% building 44/53 modules 9 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\mapValues.js
<s> [webpack.Progress] 15% building 45/53 modules 8 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\mapValues.js
<s> [webpack.Progress] 15% building 46/53 modules 7 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\mapValues.js
<s> [webpack.Progress] 15% building 47/53 modules 6 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\mapValues.js
<s> [webpack.Progress] 15% building 47/54 modules 7 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\babel-loader\lib\index.js??ref--8-0!C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@mdx-js\loader\index.js??ref--8-1!C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\src\stories\Introduction.stories.mdx
<s> [webpack.Progress] 15% building 48/54 modules 6 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\babel-loader\lib\index.js??ref--8-0!C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@mdx-js\loader\index.js??ref--8-1!C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\src\stories\Introduction.stories.mdx
<s> [webpack.Progress] 15% building 48/55 modules 7 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\export.js
<s> [webpack.Progress] 15% building 48/56 modules 8 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\array-iteration.js
<s> [webpack.Progress] 15% building 48/57 modules 9 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\to-object.js
<s> [webpack.Progress] 15% building 48/58 modules 10 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\array-method-has-species-support.js
<s> [webpack.Progress] 15% building 48/59 modules 11 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\object-keys.js
<s> [webpack.Progress] 15% building 48/60 modules 12 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\fails.js
<s> [webpack.Progress] 15% building 48/61 modules 13 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\to-indexed-object.js
<s> [webpack.Progress] 15% building 48/62 modules 14 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\object-get-own-property-descriptor.js
<s> [webpack.Progress] 15% building 48/63 modules 15 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\descriptors.js
<s> [webpack.Progress] 15% building 48/64 modules 16 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\global.js
<s> [webpack.Progress] 15% building 48/65 modules 17 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\is-pure.js
<s> [webpack.Progress] 15% building 48/66 modules 18 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\get-built-in.js
<s> [webpack.Progress] 15% building 48/67 modules 19 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\use-symbol-as-uid.js
<s> [webpack.Progress] 15% building 48/68 modules 20 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\native-symbol.js
<s> [webpack.Progress] 15% building 48/69 modules 21 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\object-define-property.js
<s> [webpack.Progress] 15% building 48/70 modules 22 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-backgrounds\dist\decorators\index.js
<s> [webpack.Progress] 15% building 49/70 modules 21 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-backgrounds\dist\decorators\index.js
<s> [webpack.Progress] 16% building 50/70 modules 20 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-backgrounds\dist\decorators\index.js
<s> [webpack.Progress] 16% building 51/70 modules 19 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-backgrounds\dist\decorators\index.js
<s> [webpack.Progress] 16% building 52/70 modules 18 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-backgrounds\dist\decorators\index.js
<s> [webpack.Progress] 16% building 52/71 modules 19 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\babel-loader\lib\index.js??ref--4-0!C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\source-loader\dist\index.js??ref--10!C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\src\stories\Header.stories.tsx
<s> [webpack.Progress] 16% building 52/72 modules 20 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\babel-loader\lib\index.js??ref--4-0!C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\source-loader\dist\index.js??ref--10!C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\src\stories\Page.stories.tsx
<s> [webpack.Progress] 16% building 52/73 modules 21 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\babel-loader\lib\index.js??ref--4-0!C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\source-loader\dist\index.js??ref--10!C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\src\stories\Button\Button.stories.tsx
<s> [webpack.Progress] 16% building 53/73 modules 20 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\babel-loader\lib\index.js??ref--4-0!C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\source-loader\dist\index.js??ref--10!C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\src\stories\Button\Button.stories.tsx
<s> [webpack.Progress] 16% building 53/74 modules 21 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\array-for-each.js
<s> [webpack.Progress] 16% building 53/75 modules 22 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\create-non-enumerable-property.js
<s> [webpack.Progress] 16% building 53/76 modules 23 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\index.js
<s> [webpack.Progress] 16% building 53/77 modules 24 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\object-define-properties.js
<s> [webpack.Progress] 16% building 53/78 modules 25 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\dom-iterables.js
<s> [webpack.Progress] 16% building 53/79 modules 26 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\create-property.js
<s> [webpack.Progress] 16% building 53/80 modules 27 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\own-keys.js
<s> [webpack.Progress] 16% building 53/81 modules 28 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\internal-state.js
<s> [webpack.Progress] 16% building 53/82 modules 29 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\set-to-string-tag.js
<s> [webpack.Progress] 16% building 53/83 modules 30 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\define-well-known-symbol.js
<s> [webpack.Progress] 16% building 53/84 modules 31 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\well-known-symbol-wrapped.js
<s> [webpack.Progress] 16% building 53/85 modules 32 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\airbnb-js-shims\index.js
<s> [webpack.Progress] 16% building 53/86 modules 33 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\global\window.js
<s> [webpack.Progress] 16% building 53/87 modules 34 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\docgen\index.js
<s> [webpack.Progress] 16% building 54/87 modules 33 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\docgen\index.js
<s> [webpack.Progress] 16% building 55/87 modules 32 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\docgen\index.js
<s> [webpack.Progress] 16% building 56/87 modules 31 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\docgen\index.js
<s> [webpack.Progress] 16% building 57/87 modules 30 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\docgen\index.js
<s> [webpack.Progress] 16% building 58/87 modules 29 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\docgen\index.js
<s> [webpack.Progress] 17% building 59/87 modules 28 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\docgen\index.js
<s> [webpack.Progress] 17% building 60/87 modules 27 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\docgen\index.js
<s> [webpack.Progress] 17% building 61/87 modules 26 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\docgen\index.js
<s> [webpack.Progress] 17% building 62/87 modules 25 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\docgen\index.js
<s> [webpack.Progress] 17% building 63/87 modules 24 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\docgen\index.js
<s> [webpack.Progress] 17% building 64/87 modules 23 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\docgen\index.js
<s> [webpack.Progress] 17% building 65/87 modules 22 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\docgen\index.js
<s> [webpack.Progress] 17% building 66/87 modules 21 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\docgen\index.js
<s> [webpack.Progress] 18% building 67/87 modules 20 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\docgen\index.js
<s> [webpack.Progress] 18% building 68/87 modules 19 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\docgen\index.js
<s> [webpack.Progress] 18% building 68/88 modules 20 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\well-known-symbol.js
<s> [webpack.Progress] 18% building 69/88 modules 19 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\well-known-symbol.js
<s> [webpack.Progress] 18% building 70/88 modules 18 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\well-known-symbol.js
<s> [webpack.Progress] 18% building 70/89 modules 19 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.array.concat.js
<s> [webpack.Progress] 18% building 71/89 modules 18 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.array.concat.js
<s> [webpack.Progress] 18% building 72/89 modules 17 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.array.concat.js
<s> [webpack.Progress] 18% building 73/89 modules 16 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.array.concat.js
<s> [webpack.Progress] 18% building 74/89 modules 15 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.array.concat.js
<s> [webpack.Progress] 19% building 75/89 modules 14 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.array.concat.js
<s> [webpack.Progress] 19% building 76/89 modules 13 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.array.concat.js
<s> [webpack.Progress] 19% building 77/89 modules 12 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.array.concat.js
<s> [webpack.Progress] 19% building 78/89 modules 11 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.array.concat.js
<s> [webpack.Progress] 19% building 79/89 modules 10 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.array.concat.js
<s> [webpack.Progress] 19% building 80/89 modules 9 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.array.concat.js
<s> [webpack.Progress] 19% building 81/89 modules 8 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.array.concat.js
<s> [webpack.Progress] 19% building 82/89 modules 7 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.array.concat.js
<s> [webpack.Progress] 19% building 82/90 modules 8 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\client-api\dist\client_api.js
<s> [webpack.Progress] 19% building 82/91 modules 9 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\react\dist\client\index.js
<s> [webpack.Progress] 19% building 82/92 modules 10 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\core\node_modules\webpack\buildin\global.js
<s> [webpack.Progress] 19% building 82/93 modules 11 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\client-api\dist\inferControls.js
<s> [webpack.Progress] 19% building 82/94 modules 12 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\client-api\dist\types.js
<s> [webpack.Progress] 19% building 82/95 modules 13 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\client-api\dist\simulate-pageload.js
<s> [webpack.Progress] 19% building 82/96 modules 14 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\client-api\dist\pathToId.js
<s> [webpack.Progress] 19% building 82/97 modules 15 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\client-api\dist\queryparams.js
<s> [webpack.Progress] 19% building 82/98 modules 16 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\client-api\dist\hooks.js
<s> [webpack.Progress] 19% building 82/99 modules 17 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\client-api\dist\config_api.js
<s> [webpack.Progress] 19% building 82/100 modules 18 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\client-api\dist\story_store.js
<s> [webpack.Progress] 19% building 82/101 modules 19 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\object-assign.js
<s> [webpack.Progress] 19% building 82/102 modules 20 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\redefine.js
<s> [webpack.Progress] 19% building 83/102 modules 19 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\redefine.js
<s> [webpack.Progress] 19% building 83/103 modules 20 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\regexp-exec.js
<s> [webpack.Progress] 19% building 83/104 modules 21 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.array.reduce.js
<s> [webpack.Progress] 19% building 83/105 modules 22 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.function.name.js
<s> [webpack.Progress] 19% building 83/106 modules 23 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.array.map.js
<s> [webpack.Progress] 19% building 83/107 modules 24 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.array.join.js
<s> [webpack.Progress] 19% building 83/108 modules 25 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseAssignValue.js
<s> [webpack.Progress] 19% building 83/109 modules 26 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.date.to-string.js
<s> [webpack.Progress] 19% building 83/110 modules 27 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.object.to-string.js
<s> [webpack.Progress] 19% building 83/111 modules 28 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.string.match.js
<s> [webpack.Progress] 19% building 83/112 modules 29 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.string.replace.js
<s> [webpack.Progress] 19% building 83/113 modules 30 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseIteratee.js
<s> [webpack.Progress] 19% building 83/114 modules 31 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\features\symbol\index.js
<s> [webpack.Progress] 20% building 84/114 modules 30 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\features\symbol\index.js
<s> [webpack.Progress] 20% building 85/114 modules 29 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\features\symbol\index.js
<s> [webpack.Progress] 20% building 86/114 modules 28 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\features\symbol\index.js
<s> [webpack.Progress] 20% building 86/115 modules 29 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\typeScript\handleProp.js
<s> [webpack.Progress] 20% building 86/116 modules 30 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\propTypes\handleProp.js
<s> [webpack.Progress] 20% building 86/117 modules 31 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseForOwn.js
<s> [webpack.Progress] 20% building 87/117 modules 30 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseForOwn.js
<s> [webpack.Progress] 20% building 88/117 modules 29 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseForOwn.js
<s> [webpack.Progress] 20% building 89/117 modules 28 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseForOwn.js
<s> [webpack.Progress] 20% building 90/117 modules 27 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseForOwn.js
<s> [webpack.Progress] 20% building 91/117 modules 26 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseForOwn.js
<s> [webpack.Progress] 20% building 91/118 modules 27 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\set-species.js
<s> [webpack.Progress] 20% building 91/119 modules 28 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\is-forced.js
<s> [webpack.Progress] 20% building 91/120 modules 29 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\engine-v8-version.js
<s> [webpack.Progress] 20% building 91/121 modules 30 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\require-object-coercible.js
<s> [webpack.Progress] 20% building 91/122 modules 31 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\function-bind-context.js
<s> [webpack.Progress] 20% building 91/123 modules 32 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\object-keys-internal.js
<s> [webpack.Progress] 20% building 91/124 modules 33 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\ie8-dom-define.js
<s> [webpack.Progress] 20% building 91/125 modules 34 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\indexed-object.js
<s> [webpack.Progress] 20% building 91/126 modules 35 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\enum-bug-keys.js
<s> [webpack.Progress] 20% building 91/127 modules 36 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\has.js
<s> [webpack.Progress] 20% building 91/128 modules 37 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\to-primitive.js
<s> [webpack.Progress] 21% building 92/128 modules 36 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\to-primitive.js
<s> [webpack.Progress] 21% building 92/129 modules 37 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\path.js
<s> [webpack.Progress] 21% building 93/129 modules 36 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\path.js
<s> [webpack.Progress] 21% building 94/129 modules 35 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\path.js
<s> [webpack.Progress] 21% building 95/129 modules 34 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\path.js
<s> [webpack.Progress] 21% building 96/129 modules 33 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\path.js
<s> [webpack.Progress] 21% building 97/129 modules 32 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\path.js
<s> [webpack.Progress] 21% building 97/130 modules 33 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.string.iterator.js
<s> [webpack.Progress] 21% building 98/130 modules 32 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.string.iterator.js
<s> [webpack.Progress] 21% building 99/130 modules 31 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.string.iterator.js
<s> [webpack.Progress] 22% building 100/130 modules 30 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.string.iterator.js
<s> [webpack.Progress] 22% building 100/131 modules 31 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\engine-is-node.js
<s> [webpack.Progress] 22% building 100/132 modules 32 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\preview\index.js
<s> [webpack.Progress] 22% building 100/133 modules 33 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-backgrounds\dist\decorators\withBackground.js
<s> [webpack.Progress] 22% building 100/134 modules 34 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\models\index.js
<s> [webpack.Progress] 22% building 100/135 modules 35 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\util-deprecate\browser.js
<s> [webpack.Progress] 22% building 100/136 modules 36 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\react\index.js
<s> [webpack.Progress] 22% building 101/136 modules 35 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\react\index.js
<s> [webpack.Progress] 22% building 102/136 modules 34 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\react\index.js
<s> [webpack.Progress] 22% building 103/136 modules 33 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\react\index.js
<s> [webpack.Progress] 22% building 104/136 modules 32 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\react\index.js
<s> [webpack.Progress] 22% building 105/136 modules 31 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\react\index.js
<s> [webpack.Progress] 22% building 106/136 modules 30 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\react\index.js
<s> [webpack.Progress] 22% building 107/136 modules 29 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\react\index.js
<s> [webpack.Progress] 22% building 108/136 modules 28 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\react\index.js
<s> [webpack.Progress] 23% building 109/136 modules 27 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\react\index.js
<s> [webpack.Progress] 23% building 110/136 modules 26 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\react\index.js
<s> [webpack.Progress] 23% building 111/136 modules 25 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\react\index.js
<s> [webpack.Progress] 23% building 112/136 modules 24 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\react\index.js
<s> [webpack.Progress] 23% building 112/137 modules 25 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\create-property-descriptor.js
<s> [webpack.Progress] 23% building 112/138 modules 26 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-backgrounds\dist\decorators\withGrid.js
<s> [webpack.Progress] 23% building 112/139 modules 27 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\array-method-is-strict.js
<s> [webpack.Progress] 23% building 112/140 modules 28 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\an-object.js
<s> [webpack.Progress] 23% building 113/140 modules 27 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\an-object.js
<s> [webpack.Progress] 23% building 113/141 modules 28 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\native-weak-map.js
<s> [webpack.Progress] 23% building 114/141 modules 27 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\native-weak-map.js
<s> [webpack.Progress] 23% building 114/142 modules 28 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\lib\index.js
<s> [webpack.Progress] 23% building 114/143 modules 29 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\ts-dedent\dist\index.js
<s> [webpack.Progress] 23% building 114/144 modules 30 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\object-get-own-property-symbols.js
<s> [webpack.Progress] 23% building 115/144 modules 29 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\object-get-own-property-symbols.js
<s> [webpack.Progress] 23% building 116/144 modules 28 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\object-get-own-property-symbols.js
<s> [webpack.Progress] 24% building 117/144 modules 27 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\object-get-own-property-symbols.js
<s> [webpack.Progress] 24% building 117/145 modules 28 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addons\dist\public_api.js
<s> [webpack.Progress] 24% building 117/146 modules 29 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\object-get-own-property-names.js
<s> [webpack.Progress] 24% building 117/147 modules 30 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\airbnb-js-shims\target\es5.js
<s> [webpack.Progress] 24% building 117/148 modules 31 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\hidden-keys.js
<s> [webpack.Progress] 24% building 118/148 modules 30 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\hidden-keys.js
<s> [webpack.Progress] 24% building 118/149 modules 31 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\shared-key.js
<s> [webpack.Progress] 24% building 118/150 modules 32 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\docgen\types.js
<s> [webpack.Progress] 24% building 118/151 modules 33 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\shared-store.js
<s> [webpack.Progress] 24% building 118/152 modules 34 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\docgen\extractDocgenProps.js
<s> [webpack.Progress] 24% building 118/153 modules 35 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\is-object.js
<s> [webpack.Progress] 24% building 118/154 modules 36 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\mdx.js
<s> [webpack.Progress] 24% building 118/155 modules 37 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\types.js
<s> [webpack.Progress] 24% building 118/156 modules 38 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\Wrapper.js
<s> [webpack.Progress] 24% building 118/157 modules 39 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\Title.js
<s> [webpack.Progress] 24% building 118/158 modules 40 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\Subtitle.js
<s> [webpack.Progress] 24% building 118/159 modules 41 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\Story.js
<s> [webpack.Progress] 24% building 118/160 modules 42 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\SourceContainer.js
<s> [webpack.Progress] 24% building 118/161 modules 43 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\Stories.js
<s> [webpack.Progress] 24% building 118/162 modules 44 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\Source.js
<s> [webpack.Progress] 24% building 118/163 modules 45 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\Subheading.js
<s> [webpack.Progress] 24% building 119/163 modules 44 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\Subheading.js
<s> [webpack.Progress] 24% building 120/163 modules 43 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\Subheading.js
<s> [webpack.Progress] 24% building 121/163 modules 42 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\Subheading.js
<s> [webpack.Progress] 24% building 122/163 modules 41 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\Subheading.js
<s> [webpack.Progress] 24% building 123/163 modules 40 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\Subheading.js
<s> [webpack.Progress] 24% building 124/163 modules 39 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\Subheading.js
<s> [webpack.Progress] 25% building 125/163 modules 38 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\Subheading.js
<s> [webpack.Progress] 25% building 126/163 modules 37 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\Subheading.js
<s> [webpack.Progress] 25% building 127/163 modules 36 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\Subheading.js
<s> [webpack.Progress] 25% building 128/163 modules 35 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\Subheading.js
<s> [webpack.Progress] 25% building 129/163 modules 34 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\Subheading.js
<s> [webpack.Progress] 25% building 130/163 modules 33 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\Subheading.js
<s> [webpack.Progress] 25% building 131/163 modules 32 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\Subheading.js
<s> [webpack.Progress] 25% building 132/163 modules 31 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\Subheading.js
<s> [webpack.Progress] 25% building 132/164 modules 32 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\uid.js
<s> [webpack.Progress] 25% building 133/164 modules 31 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\uid.js
<s> [webpack.Progress] 26% building 134/164 modules 30 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\uid.js
<s> [webpack.Progress] 26% building 135/164 modules 29 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\uid.js
<s> [webpack.Progress] 26% building 136/164 modules 28 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\uid.js
<s> [webpack.Progress] 26% building 136/165 modules 29 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\react-element-to-jsx-string\dist\cjs\index.js
<s> [webpack.Progress] 26% building 137/165 modules 28 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\react-element-to-jsx-string\dist\cjs\index.js
<s> [webpack.Progress] 26% building 138/165 modules 27 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\react-element-to-jsx-string\dist\cjs\index.js
<s> [webpack.Progress] 26% building 139/165 modules 26 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\react-element-to-jsx-string\dist\cjs\index.js
<s> [webpack.Progress] 26% building 140/165 modules 25 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\react-element-to-jsx-string\dist\cjs\index.js
<s> [webpack.Progress] 26% building 141/165 modules 24 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\react-element-to-jsx-string\dist\cjs\index.js
<s> [webpack.Progress] 27% building 142/165 modules 23 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\react-element-to-jsx-string\dist\cjs\index.js
<s> [webpack.Progress] 27% building 143/165 modules 22 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\react-element-to-jsx-string\dist\cjs\index.js
<s> [webpack.Progress] 27% building 144/165 modules 21 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\react-element-to-jsx-string\dist\cjs\index.js
<s> [webpack.Progress] 27% building 144/166 modules 22 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\web.dom-collections.iterator.js
<s> [webpack.Progress] 27% building 144/167 modules 23 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.map.js
<s> [webpack.Progress] 27% building 144/168 modules 24 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.array.iterator.js
<s> [webpack.Progress] 27% building 145/168 modules 23 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.array.iterator.js
<s> [webpack.Progress] 27% building 146/168 modules 22 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.array.iterator.js
<s> [webpack.Progress] 27% building 147/168 modules 21 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.array.iterator.js
<s> [webpack.Progress] 27% building 147/169 modules 22 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\react\dist\client\preview\types-6-0.js
<s> [webpack.Progress] 27% building 148/169 modules 21 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\react\dist\client\preview\types-6-0.js
<s> [webpack.Progress] 27% building 148/170 modules 22 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\blocks.js
<s> [webpack.Progress] 27% building 148/171 modules 23 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.array.includes.js
<s> [webpack.Progress] 27% building 148/172 modules 24 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\client-api\dist\parameters.js
<s> [webpack.Progress] 27% building 148/173 modules 25 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\client-api\dist\inferArgTypes.js
<s> [webpack.Progress] 27% building 148/174 modules 26 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\inspect-source.js
<s> [webpack.Progress] 27% building 148/175 modules 27 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\object-property-is-enumerable.js
<s> [webpack.Progress] 27% building 149/175 modules 26 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\object-property-is-enumerable.js
<s> [webpack.Progress] 27% building 149/176 modules 27 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\set-global.js
<s> [webpack.Progress] 28% building 150/176 modules 26 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\set-global.js
<s> [webpack.Progress] 28% building 150/177 modules 27 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\client-api\dist\ensureArgTypes.js
<s> [webpack.Progress] 28% building 151/177 modules 26 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\client-api\dist\ensureArgTypes.js
<s> [webpack.Progress] 28% building 152/177 modules 25 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\client-api\dist\ensureArgTypes.js
<s> [webpack.Progress] 28% building 152/178 modules 26 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\regexp-flags.js
<s> [webpack.Progress] 28% building 153/178 modules 25 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\regexp-flags.js
<s> [webpack.Progress] 28% building 153/179 modules 26 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\array-reduce.js
<s> [webpack.Progress] 28% building 154/179 modules 25 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\array-reduce.js
<s> [webpack.Progress] 28% building 155/179 modules 24 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\array-reduce.js
<s> [webpack.Progress] 28% building 155/180 modules 25 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\regexp-sticky-helpers.js
<s> [webpack.Progress] 28% building 155/181 modules 26 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_defineProperty.js
<s> [webpack.Progress] 28% building 156/181 modules 25 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_defineProperty.js
<s> [webpack.Progress] 28% building 157/181 modules 24 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_defineProperty.js
<s> [webpack.Progress] 28% building 158/181 modules 23 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_defineProperty.js
<s> [webpack.Progress] 29% building 159/181 modules 22 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_defineProperty.js
<s> [webpack.Progress] 29% building 159/182 modules 23 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\client-api\dist\storySort.js
<s> [webpack.Progress] 29% building 159/183 modules 24 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\to-string-tag-support.js
<s> [webpack.Progress] 29% building 160/183 modules 23 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\to-string-tag-support.js
<s> [webpack.Progress] 29% building 161/183 modules 22 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\to-string-tag-support.js
<s> [webpack.Progress] 29% building 162/183 modules 21 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\to-string-tag-support.js
<s> [webpack.Progress] 29% building 162/184 modules 22 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\fix-regexp-well-known-symbol-logic.js
<s> [webpack.Progress] 29% building 163/184 modules 21 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\fix-regexp-well-known-symbol-logic.js
<s> [webpack.Progress] 29% building 163/185 modules 22 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\regexp-exec-abstract.js
<s> [webpack.Progress] 29% building 163/186 modules 23 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\get-substitution.js
<s> [webpack.Progress] 29% building 163/187 modules 24 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\advance-string-index.js
<s> [webpack.Progress] 29% building 163/188 modules 25 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\to-integer.js
<s> [webpack.Progress] 29% building 163/189 modules 26 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseMatches.js
<s> [webpack.Progress] 29% building 164/189 modules 25 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseMatches.js
<s> [webpack.Progress] 29% building 164/190 modules 26 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\esnext.symbol.replace-all.js
<s> [webpack.Progress] 29% building 164/191 modules 27 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\esnext.symbol.pattern-match.js
<s> [webpack.Progress] 29% building 165/191 modules 26 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\esnext.symbol.pattern-match.js
<s> [webpack.Progress] 29% building 165/192 modules 27 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\esnext.symbol.observable.js
<s> [webpack.Progress] 29% building 165/193 modules 28 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseFor.js
<s> [webpack.Progress] 29% building 165/194 modules 29 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\keys.js
<s> [webpack.Progress] 29% building 165/195 modules 30 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\propTypes\rawDefaultPropResolvers.js
<s> [webpack.Progress] 29% building 165/196 modules 31 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\react\cjs\react.production.min.js
<s> [webpack.Progress] 29% building 165/197 modules 32 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\propTypes\sortProps.js
<s> [webpack.Progress] 29% building 166/197 modules 31 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\propTypes\sortProps.js
<s> [webpack.Progress] 30% building 167/197 modules 30 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\propTypes\sortProps.js
<s> [webpack.Progress] 30% building 168/197 modules 29 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\propTypes\sortProps.js
<s> [webpack.Progress] 30% building 168/198 modules 30 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\propTypes\createType.js
<s> [webpack.Progress] 30% building 168/199 modules 31 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\engine-user-agent.js
<s> [webpack.Progress] 30% building 168/200 modules 32 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\core\node_modules\file-loader\dist\cjs.js??ref--12!C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\src\stories\assets\stackalt.svg
<s> [webpack.Progress] 30% building 168/201 modules 33 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\core\node_modules\file-loader\dist\cjs.js??ref--12!C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\src\stories\assets\repo.svg
<s> [webpack.Progress] 30% building 168/202 modules 34 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\core\node_modules\file-loader\dist\cjs.js??ref--12!C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\src\stories\assets\plugin.svg
<s> [webpack.Progress] 30% building 168/203 modules 35 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\core\node_modules\file-loader\dist\cjs.js??ref--12!C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\src\stories\assets\flow.svg
<s> [webpack.Progress] 30% building 168/204 modules 36 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\core\node_modules\file-loader\dist\cjs.js??ref--12!C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\src\stories\assets\direction.svg
<s> [webpack.Progress] 30% building 168/205 modules 37 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\core\node_modules\file-loader\dist\cjs.js??ref--12!C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\src\stories\assets\comments.svg
<s> [webpack.Progress] 30% building 168/206 modules 38 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\core\node_modules\file-loader\dist\cjs.js??ref--12!C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\src\stories\assets\colors.svg
<s> [webpack.Progress] 30% building 168/207 modules 39 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\core\node_modules\file-loader\dist\cjs.js??ref--12!C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\src\stories\assets\code-brackets.svg
<s> [webpack.Progress] 30% building 168/208 modules 40 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\array-includes.js
<s> [webpack.Progress] 30% building 168/209 modules 41 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\esnext.symbol.dispose.js
<s> [webpack.Progress] 30% building 168/210 modules 42 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\a-function.js
<s> [webpack.Progress] 30% building 169/210 modules 41 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\a-function.js
<s> [webpack.Progress] 30% building 169/211 modules 42 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\esnext.symbol.async-dispose.js
<s> [webpack.Progress] 30% building 169/212 modules 43 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\classof-raw.js
<s> [webpack.Progress] 30% building 169/213 modules 44 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\property.js
<s> [webpack.Progress] 30% building 169/214 modules 45 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\isArray.js
<s> [webpack.Progress] 30% building 169/215 modules 46 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\document-create-element.js
<s> [webpack.Progress] 30% building 169/216 modules 47 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\identity.js
<s> [webpack.Progress] 30% building 170/216 modules 46 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\identity.js
<s> [webpack.Progress] 30% building 171/216 modules 45 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\identity.js
<s> [webpack.Progress] 30% building 172/216 modules 44 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\identity.js
<s> [webpack.Progress] 30% building 172/217 modules 45 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\string-multibyte.js
<s> [webpack.Progress] 30% building 173/217 modules 44 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\string-multibyte.js
<s> [webpack.Progress] 30% building 173/218 modules 45 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\preview\action.js
<s> [webpack.Progress] 30% building 174/218 modules 44 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\preview\action.js
<s> [webpack.Progress] 30% building 174/219 modules 45 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\models\ActionDisplay.js
<s> [webpack.Progress] 31% building 175/219 modules 44 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\models\ActionDisplay.js
<s> [webpack.Progress] 31% building 176/219 modules 43 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\models\ActionDisplay.js
<s> [webpack.Progress] 31% building 177/219 modules 42 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\models\ActionDisplay.js
<s> [webpack.Progress] 31% building 178/219 modules 41 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\models\ActionDisplay.js
<s> [webpack.Progress] 31% building 179/219 modules 40 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\models\ActionDisplay.js
<s> [webpack.Progress] 31% building 180/219 modules 39 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\models\ActionDisplay.js
<s> [webpack.Progress] 31% building 181/219 modules 38 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\models\ActionDisplay.js
<s> [webpack.Progress] 31% building 182/219 modules 37 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\models\ActionDisplay.js
<s> [webpack.Progress] 31% building 183/219 modules 36 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\models\ActionDisplay.js
<s> [webpack.Progress] 32% building 184/219 modules 35 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\models\ActionDisplay.js
<s> [webpack.Progress] 32% building 185/219 modules 34 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\models\ActionDisplay.js
<s> [webpack.Progress] 32% building 185/220 modules 35 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\models\HandlerFunction.js
<s> [webpack.Progress] 32% building 185/221 modules 36 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\models\DecoratorFunction.js
<s> [webpack.Progress] 32% building 186/221 modules 35 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\models\DecoratorFunction.js
<s> [webpack.Progress] 32% building 187/221 modules 34 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\models\DecoratorFunction.js
<s> [webpack.Progress] 32% building 188/221 modules 33 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\models\DecoratorFunction.js
<s> [webpack.Progress] 32% building 188/222 modules 34 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-backgrounds\dist\constants.js
<s> [webpack.Progress] 32% building 189/222 modules 33 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-backgrounds\dist\constants.js
<s> [webpack.Progress] 32% building 190/222 modules 32 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-backgrounds\dist\constants.js
<s> [webpack.Progress] 32% building 190/223 modules 33 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\lib\captions.js
<s> [webpack.Progress] 32% building 190/224 modules 34 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\lib\generateCode.js
<s> [webpack.Progress] 32% building 190/225 modules 35 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\lib\componentTypes.js
<s> [webpack.Progress] 32% building 190/226 modules 36 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\lib\isHtmlTag.js
<s> [webpack.Progress] 32% building 191/226 modules 35 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\lib\isHtmlTag.js
<s> [webpack.Progress] 33% building 192/226 modules 34 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\lib\isHtmlTag.js
<s> [webpack.Progress] 33% building 192/227 modules 35 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\models\ActionsMap.js
<s> [webpack.Progress] 33% building 193/227 modules 34 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\models\ActionsMap.js
<s> [webpack.Progress] 33% building 193/228 modules 35 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\prop-types\index.js
<s> [webpack.Progress] 33% building 193/229 modules 36 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\models\ActionOptions.js
<s> [webpack.Progress] 33% building 194/229 modules 35 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\models\ActionOptions.js
<s> [webpack.Progress] 33% building 194/230 modules 36 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addons\dist\index.js
<s> [webpack.Progress] 33% building 195/230 modules 35 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addons\dist\index.js
<s> [webpack.Progress] 33% building 196/230 modules 34 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addons\dist\index.js
<s> [webpack.Progress] 33% building 196/231 modules 35 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addons\dist\hooks.js
<s> [webpack.Progress] 33% building 196/232 modules 36 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\airbnb-js-shims\target\es2015.js
<s> [webpack.Progress] 33% building 197/232 modules 35 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\airbnb-js-shims\target\es2015.js
<s> [webpack.Progress] 33% building 197/233 modules 36 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addons\dist\storybook-channel-mock.js
<s> [webpack.Progress] 33% building 198/233 modules 35 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addons\dist\storybook-channel-mock.js
<s> [webpack.Progress] 33% building 198/234 modules 36 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\shared.js
<s> [webpack.Progress] 33% building 198/235 modules 37 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\docgen\PropDef.js
<s> [webpack.Progress] 33% building 198/236 modules 38 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addons\dist\types.js
<s> [webpack.Progress] 33% building 198/237 modules 39 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\docgen\createPropDef.js
<s> [webpack.Progress] 33% building 198/238 modules 40 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\DocsContext.js
<s> [webpack.Progress] 33% building 198/239 modules 41 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\utils.js
<s> [webpack.Progress] 33% building 199/239 modules 40 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\utils.js
<s> [webpack.Progress] 34% building 200/239 modules 39 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\utils.js
<s> [webpack.Progress] 34% building 201/239 modules 38 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\utils.js
<s> [webpack.Progress] 34% building 202/239 modules 37 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\utils.js
<s> [webpack.Progress] 34% building 203/239 modules 36 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\utils.js
<s> [webpack.Progress] 34% building 204/239 modules 35 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\utils.js
<s> [webpack.Progress] 34% building 205/239 modules 34 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\utils.js
<s> [webpack.Progress] 34% building 206/239 modules 33 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\utils.js
<s> [webpack.Progress] 34% building 207/239 modules 32 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\utils.js
<s> [webpack.Progress] 34% building 208/239 modules 31 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\utils.js
<s> [webpack.Progress] 35% building 209/239 modules 30 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\utils.js
<s> [webpack.Progress] 35% building 210/239 modules 29 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\utils.js
<s> [webpack.Progress] 35% building 211/239 modules 28 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\utils.js
<s> [webpack.Progress] 35% building 212/239 modules 27 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\utils.js
<s> [webpack.Progress] 35% building 213/239 modules 26 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\utils.js
<s> [webpack.Progress] 35% building 214/239 modules 25 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\utils.js
<s> [webpack.Progress] 35% building 215/239 modules 24 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\utils.js
<s> [webpack.Progress] 35% building 216/239 modules 23 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\utils.js
<s> [webpack.Progress] 36% building 217/239 modules 22 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\utils.js
<s> [webpack.Progress] 36% building 218/239 modules 21 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\utils.js
<s> [webpack.Progress] 36% building 219/239 modules 20 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\utils.js
<s> [webpack.Progress] 36% building 219/240 modules 21 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\Heading.js
<s> [webpack.Progress] 36% building 219/241 modules 22 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\DocsStory.js
<s> [webpack.Progress] 36% building 219/242 modules 23 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\enhanceSource.js
<s> [webpack.Progress] 36% building 220/242 modules 22 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\enhanceSource.js
<s> [webpack.Progress] 36% building 221/242 modules 21 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\enhanceSource.js
<s> [webpack.Progress] 36% building 222/242 modules 20 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\enhanceSource.js
<s> [webpack.Progress] 36% building 223/242 modules 19 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\blocks\enhanceSource.js
<s> [webpack.Progress] 36% building 223/243 modules 20 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\html.js
<s> [webpack.Progress] 36% building 224/243 modules 19 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\html.js
<s> [webpack.Progress] 37% building 225/243 modules 18 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\html.js
<s> [webpack.Progress] 37% building 226/243 modules 17 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\html.js
<s> [webpack.Progress] 37% building 227/243 modules 16 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\html.js
<s> [webpack.Progress] 37% building 227/244 modules 17 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\collection.js
<s> [webpack.Progress] 37% building 228/244 modules 16 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\collection.js
<s> [webpack.Progress] 37% building 229/244 modules 15 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\collection.js
<s> [webpack.Progress] 37% building 229/245 modules 16 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\define-iterator.js
<s> [webpack.Progress] 37% building 230/245 modules 15 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\define-iterator.js
<s> [webpack.Progress] 37% building 231/245 modules 14 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\define-iterator.js
<s> [webpack.Progress] 37% building 231/246 modules 15 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\es5-shim\es5-sham.js
<s> [webpack.Progress] 37% building 231/247 modules 16 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\iterators.js
<s> [webpack.Progress] 37% building 231/248 modules 17 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\add-to-unscopables.js
<s> [webpack.Progress] 37% building 231/249 modules 18 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\collection-strong.js
<s> [webpack.Progress] 37% building 232/249 modules 17 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\collection-strong.js
<s> [webpack.Progress] 37% building 232/250 modules 18 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\isPlainObject.js
<s> [webpack.Progress] 37% building 232/251 modules 19 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.set.js
<s> [webpack.Progress] 37% building 232/252 modules 20 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.array.is-array.js
<s> [webpack.Progress] 37% building 233/252 modules 19 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.array.is-array.js
<s> [webpack.Progress] 37% building 233/253 modules 20 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.symbol.iterator.js
<s> [webpack.Progress] 38% building 234/253 modules 19 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.symbol.iterator.js
<s> [webpack.Progress] 38% building 234/254 modules 20 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.symbol.description.js
<s> [webpack.Progress] 38% building 235/254 modules 19 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.symbol.description.js
<s> [webpack.Progress] 38% building 236/254 modules 18 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.symbol.description.js
<s> [webpack.Progress] 38% building 236/255 modules 19 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.object.entries.js
<s> [webpack.Progress] 38% building 237/255 modules 18 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.object.entries.js
<s> [webpack.Progress] 38% building 237/256 modules 19 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\to-length.js
<s> [webpack.Progress] 38% building 238/256 modules 18 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\to-length.js
<s> [webpack.Progress] 38% building 238/257 modules 19 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_getNative.js
<s> [webpack.Progress] 38% building 238/258 modules 20 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.array.index-of.js
<s> [webpack.Progress] 38% building 238/259 modules 21 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.string.split.js
<s> [webpack.Progress] 38% building 238/260 modules 22 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.array.from.js
<s> [webpack.Progress] 38% building 239/260 modules 21 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.array.from.js
<s> [webpack.Progress] 38% building 239/261 modules 22 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.array.every.js
<s> [webpack.Progress] 38% building 239/262 modules 23 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\index.js
<s> [webpack.Progress] 38% building 239/263 modules 24 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseIsMatch.js
<s> [webpack.Progress] 38% building 239/264 modules 25 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_matchesStrictComparable.js
<s> [webpack.Progress] 38% building 239/265 modules 26 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_getMatchData.js
<s> [webpack.Progress] 38% building 240/265 modules 25 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_getMatchData.js
<s> [webpack.Progress] 38% building 241/265 modules 24 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_getMatchData.js
<s> [webpack.Progress] 39% building 242/265 modules 23 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_getMatchData.js
<s> [webpack.Progress] 39% building 242/266 modules 24 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_createBaseFor.js
<s> [webpack.Progress] 39% building 243/266 modules 23 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_createBaseFor.js
<s> [webpack.Progress] 39% building 243/267 modules 24 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_arrayLikeKeys.js
<s> [webpack.Progress] 39% building 244/267 modules 23 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_arrayLikeKeys.js
<s> [webpack.Progress] 39% building 245/267 modules 22 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_arrayLikeKeys.js
<s> [webpack.Progress] 39% building 245/268 modules 23 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\propTypes\generateFuncSignature.js
<s> [webpack.Progress] 39% building 245/269 modules 24 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\docgen\utils\index.js
<s> [webpack.Progress] 39% building 245/270 modules 25 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.array.find.js
<s> [webpack.Progress] 39% building 246/270 modules 24 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.array.find.js
<s> [webpack.Progress] 39% building 246/271 modules 25 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\isArrayLike.js
<s> [webpack.Progress] 39% building 246/272 modules 26 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseKeys.js
<s> [webpack.Progress] 39% building 246/273 modules 27 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\to-absolute-index.js
<s> [webpack.Progress] 39% building 247/273 modules 26 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\to-absolute-index.js
<s> [webpack.Progress] 39% building 248/273 modules 25 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\to-absolute-index.js
<s> [webpack.Progress] 39% building 248/274 modules 26 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseProperty.js
<s> [webpack.Progress] 39% building 248/275 modules 27 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_toKey.js
<s> [webpack.Progress] 39% building 248/276 modules 28 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_basePropertyDeep.js
<s> [webpack.Progress] 39% building 248/277 modules 29 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_isKey.js
<s> [webpack.Progress] 39% building 249/277 modules 28 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_isKey.js
<s> [webpack.Progress] 40% building 250/277 modules 27 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_isKey.js
<s> [webpack.Progress] 40% building 251/277 modules 26 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_isKey.js
<s> [webpack.Progress] 40% building 252/277 modules 25 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_isKey.js
<s> [webpack.Progress] 40% building 253/277 modules 24 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_isKey.js
<s> [webpack.Progress] 40% building 253/278 modules 25 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\dist\preview\configureActions.js
<s> [webpack.Progress] 40% building 253/279 modules 26 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\react\dist\client\preview\index.js
<s> [webpack.Progress] 40% building 254/279 modules 25 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\react\dist\client\preview\index.js
<s> [webpack.Progress] 40% building 255/279 modules 24 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\react\dist\client\preview\index.js
<s> [webpack.Progress] 40% building 256/279 modules 23 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\react\dist\client\preview\index.js
<s> [webpack.Progress] 40% building 257/279 modules 22 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\react\dist\client\preview\index.js
<s> [webpack.Progress] 40% building 258/279 modules 21 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\react\dist\client\preview\index.js
<s> [webpack.Progress] 41% building 259/279 modules 20 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\react\dist\client\preview\index.js
<s> [webpack.Progress] 41% building 260/279 modules 19 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\react\dist\client\preview\index.js
<s> [webpack.Progress] 41% building 261/279 modules 18 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\react\dist\client\preview\index.js
<s> [webpack.Progress] 41% building 262/279 modules 17 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\react\dist\client\preview\index.js
<s> [webpack.Progress] 41% building 263/279 modules 16 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\react\dist\client\preview\index.js
<s> [webpack.Progress] 41% building 263/280 modules 17 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\lib\defaultValues\prettyIdentifier.js
<s> [webpack.Progress] 41% building 264/280 modules 16 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\lib\defaultValues\prettyIdentifier.js
<s> [webpack.Progress] 41% building 265/280 modules 15 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\lib\defaultValues\prettyIdentifier.js
<s> [webpack.Progress] 41% building 265/281 modules 16 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.string.includes.js
<s> [webpack.Progress] 41% building 266/281 modules 15 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.string.includes.js
<s> [webpack.Progress] 41% building 266/282 modules 16 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\prop-types\factoryWithThrowingShims.js
<s> [webpack.Progress] 42% building 267/282 modules 15 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\prop-types\factoryWithThrowingShims.js
<s> [webpack.Progress] 42% building 267/283 modules 16 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\airbnb-js-shims\target\es2016.js
<s> [webpack.Progress] 42% building 267/284 modules 17 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.weak-map.js
<s> [webpack.Progress] 42% building 267/285 modules 18 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.function.bind.js
<s> [webpack.Progress] 42% building 267/286 modules 19 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.object.values.js
<s> [webpack.Progress] 42% building 268/286 modules 18 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.object.values.js
<s> [webpack.Progress] 42% building 269/286 modules 17 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.object.values.js
<s> [webpack.Progress] 42% building 269/287 modules 18 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\docgen\utils\defaultValue.js
<s> [webpack.Progress] 42% building 269/288 modules 19 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\utils.js
<s> [webpack.Progress] 42% building 270/288 modules 18 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\utils.js
<s> [webpack.Progress] 42% building 271/288 modules 17 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\utils.js
<s> [webpack.Progress] 42% building 272/288 modules 16 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\utils.js
<s> [webpack.Progress] 42% building 273/288 modules 15 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\utils.js
<s> [webpack.Progress] 42% building 274/288 modules 14 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\utils.js
<s> [webpack.Progress] 43% building 275/288 modules 13 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\utils.js
<s> [webpack.Progress] 43% building 276/288 modules 12 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\utils.js
<s> [webpack.Progress] 43% building 277/288 modules 11 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\utils.js
<s> [webpack.Progress] 43% building 277/289 modules 12 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\core-events\dist\index.js
<s> [webpack.Progress] 43% building 277/290 modules 13 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\qs\lib\index.js
<s> [webpack.Progress] 43% building 278/290 modules 12 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\qs\lib\index.js
<s> [webpack.Progress] 43% building 279/290 modules 11 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\qs\lib\index.js
<s> [webpack.Progress] 43% building 280/290 modules 10 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\qs\lib\index.js
<s> [webpack.Progress] 43% building 280/291 modules 11 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@mdx-js\react\dist\esm.js
<s> [webpack.Progress] 43% building 280/292 modules 12 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\lib\defaultValues\index.js
<s> [webpack.Progress] 43% building 280/293 modules 13 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\html.js
<s> [webpack.Progress] 43% building 280/294 modules 14 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\docgen\typeScript\createPropDef.js
<s> [webpack.Progress] 43% building 280/295 modules 15 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\docgen\flow\createPropDef.js
<s> [webpack.Progress] 43% building 280/296 modules 16 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\es\symbol\index.js
<s> [webpack.Progress] 43% building 281/296 modules 15 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\es\symbol\index.js
<s> [webpack.Progress] 43% building 281/297 modules 16 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\inherit-if-required.js
<s> [webpack.Progress] 43% building 282/297 modules 15 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\inherit-if-required.js
<s> [webpack.Progress] 43% building 282/298 modules 16 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\iterators-core.js
<s> [webpack.Progress] 43% building 282/299 modules 17 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\object-set-prototype-of.js
<s> [webpack.Progress] 43% building 282/300 modules 18 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\object-get-prototype-of.js
<s> [webpack.Progress] 43% building 282/301 modules 19 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\object-create.js
<s> [webpack.Progress] 43% building 282/302 modules 20 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\internal-metadata.js
<s> [webpack.Progress] 43% building 282/303 modules 21 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseGetTag.js
<s> [webpack.Progress] 43% building 282/304 modules 22 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\isObjectLike.js
<s> [webpack.Progress] 43% building 283/304 modules 21 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\isObjectLike.js
<s> [webpack.Progress] 43% building 283/305 modules 22 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\is-array.js
<s> [webpack.Progress] 43% building 283/306 modules 23 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-backgrounds\dist\helpers\index.js
<s> [webpack.Progress] 44% building 284/306 modules 22 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-backgrounds\dist\helpers\index.js
<s> [webpack.Progress] 44% building 284/307 modules 23 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_getPrototype.js
<s> [webpack.Progress] 44% building 285/307 modules 22 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_getPrototype.js
<s> [webpack.Progress] 44% building 286/307 modules 21 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_getPrototype.js
<s> [webpack.Progress] 44% building 286/308 modules 22 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\object-to-array.js
<s> [webpack.Progress] 44% building 286/309 modules 23 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\copy-constructor-properties.js
<s> [webpack.Progress] 44% building 286/310 modules 24 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\iterate.js
<s> [webpack.Progress] 44% building 286/311 modules 25 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\an-instance.js
<s> [webpack.Progress] 44% building 286/312 modules 26 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\check-correctness-of-iteration.js
<s> [webpack.Progress] 44% building 287/312 modules 25 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\check-correctness-of-iteration.js
<s> [webpack.Progress] 44% building 287/313 modules 26 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseIsNative.js
<s> [webpack.Progress] 44% building 287/314 modules 27 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\species-constructor.js
<s> [webpack.Progress] 44% building 287/315 modules 28 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\is-regexp.js
<s> [webpack.Progress] 44% building 288/315 modules 27 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\is-regexp.js
<s> [webpack.Progress] 44% building 288/316 modules 28 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\es5-shim\es5-shim.js
<s> [webpack.Progress] 44% building 288/317 modules 29 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_Stack.js
<s> [webpack.Progress] 44% building 289/317 modules 28 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_Stack.js
<s> [webpack.Progress] 44% building 290/317 modules 27 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_Stack.js
<s> [webpack.Progress] 44% building 290/318 modules 28 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseIsEqual.js
<s> [webpack.Progress] 44% building 290/319 modules 29 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_isStrictComparable.js
<s> [webpack.Progress] 44% building 290/320 modules 30 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\function.prototype.name\shim.js
<s> [webpack.Progress] 44% building 291/320 modules 29 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\function.prototype.name\shim.js
<s> [webpack.Progress] 45% building 292/320 modules 28 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\function.prototype.name\shim.js
<s> [webpack.Progress] 45% building 293/320 modules 27 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\function.prototype.name\shim.js
<s> [webpack.Progress] 45% building 293/321 modules 28 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseTimes.js
<s> [webpack.Progress] 45% building 293/322 modules 29 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\isBuffer.js
<s> [webpack.Progress] 45% building 293/323 modules 30 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\isTypedArray.js
<s> [webpack.Progress] 45% building 293/324 modules 31 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_isIndex.js
<s> [webpack.Progress] 45% building 293/325 modules 32 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\isArguments.js
<s> [webpack.Progress] 45% building 294/325 modules 31 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\isArguments.js
<s> [webpack.Progress] 45% building 294/326 modules 32 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\Badge\Badge.js
<s> [webpack.Progress] 45% building 295/326 modules 31 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\Badge\Badge.js
<s> [webpack.Progress] 45% building 296/326 modules 30 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\Badge\Badge.js
<s> [webpack.Progress] 45% building 297/326 modules 29 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\Badge\Badge.js
<s> [webpack.Progress] 45% building 298/326 modules 28 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\Badge\Badge.js
<s> [webpack.Progress] 45% building 298/327 modules 29 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\docgen\utils\docgenInfo.js
<s> [webpack.Progress] 45% building 298/328 modules 30 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\docgen\utils\string.js
<s> [webpack.Progress] 45% building 299/328 modules 29 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\docgen\utils\string.js
<s> [webpack.Progress] 45% building 299/329 modules 30 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\isFunction.js
<s> [webpack.Progress] 45% building 299/330 modules 31 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_isPrototype.js
<s> [webpack.Progress] 45% building 299/331 modules 32 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_nativeKeys.js
<s> [webpack.Progress] 46% building 300/331 modules 31 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_nativeKeys.js
<s> [webpack.Progress] 46% building 301/331 modules 30 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_nativeKeys.js
<s> [webpack.Progress] 46% building 301/332 modules 31 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\isSymbol.js
<s> [webpack.Progress] 46% building 301/333 modules 32 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\isLength.js
<s> [webpack.Progress] 46% building 302/333 modules 31 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\isLength.js
<s> [webpack.Progress] 46% building 303/333 modules 30 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\isLength.js
<s> [webpack.Progress] 46% building 303/334 modules 31 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseGet.js
<s> [webpack.Progress] 46% building 304/334 modules 30 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseGet.js
<s> [webpack.Progress] 46% building 304/335 modules 31 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\Loader\Loader.js
<s> [webpack.Progress] 46% building 305/335 modules 30 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\Loader\Loader.js
<s> [webpack.Progress] 46% building 306/335 modules 29 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\Loader\Loader.js
<s> [webpack.Progress] 46% building 307/335 modules 28 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\Loader\Loader.js
<s> [webpack.Progress] 46% building 308/335 modules 27 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\Loader\Loader.js
<s> [webpack.Progress] 47% building 309/335 modules 26 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\Loader\Loader.js
<s> [webpack.Progress] 47% building 310/335 modules 25 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\Loader\Loader.js
<s> [webpack.Progress] 47% building 311/335 modules 24 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\Loader\Loader.js
<s> [webpack.Progress] 47% building 312/335 modules 23 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\Loader\Loader.js
<s> [webpack.Progress] 47% building 313/335 modules 22 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\Loader\Loader.js
<s> [webpack.Progress] 47% building 314/335 modules 21 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\Loader\Loader.js
<s> [webpack.Progress] 47% building 315/335 modules 20 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\Loader\Loader.js
<s> [webpack.Progress] 47% building 316/335 modules 19 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\Loader\Loader.js
<s> [webpack.Progress] 48% building 317/335 modules 18 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\Loader\Loader.js
<s> [webpack.Progress] 48% building 317/336 modules 19 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\react\dist\client\preview\render.js
<s> [webpack.Progress] 48% building 317/337 modules 20 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\react\dist\client\preview\globals.js
<s> [webpack.Progress] 48% building 317/338 modules 21 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\fast-deep-equal\index.js
<s> [webpack.Progress] 48% building 318/338 modules 20 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\fast-deep-equal\index.js
<s> [webpack.Progress] 48% building 319/338 modules 19 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\fast-deep-equal\index.js
<s> [webpack.Progress] 48% building 320/338 modules 18 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\fast-deep-equal\index.js
<s> [webpack.Progress] 48% building 320/339 modules 19 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\brand\StorybookIcon.js
<s> [webpack.Progress] 48% building 320/340 modules 20 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\brand\StorybookLogo.js
<s> [webpack.Progress] 48% building 320/341 modules 21 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\correct-is-regexp-logic.js
<s> [webpack.Progress] 48% building 321/341 modules 20 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\correct-is-regexp-logic.js
<s> [webpack.Progress] 48% building 322/341 modules 19 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\correct-is-regexp-logic.js
<s> [webpack.Progress] 48% building 323/341 modules 18 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\correct-is-regexp-logic.js
<s> [webpack.Progress] 48% building 324/341 modules 17 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\correct-is-regexp-logic.js
<s> [webpack.Progress] 49% building 325/341 modules 16 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\correct-is-regexp-logic.js
<s> [webpack.Progress] 49% building 326/341 modules 15 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\correct-is-regexp-logic.js
<s> [webpack.Progress] 49% building 326/342 modules 16 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\airbnb-js-shims\target\es2017.js
<s> [webpack.Progress] 49% building 326/343 modules 17 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\collection-weak.js
<s> [webpack.Progress] 49% building 326/344 modules 18 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\function-bind.js
<s> [webpack.Progress] 49% building 326/345 modules 19 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\redefine-all.js
<s> [webpack.Progress] 49% building 326/346 modules 20 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\not-a-regexp.js
<s> [webpack.Progress] 49% building 326/347 modules 21 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\index.js
<s> [webpack.Progress] 49% building 327/347 modules 20 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\index.js
<s> [webpack.Progress] 49% building 328/347 modules 19 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\index.js
<s> [webpack.Progress] 49% building 329/347 modules 18 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\index.js
<s> [webpack.Progress] 49% building 330/347 modules 17 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\index.js
<s> [webpack.Progress] 49% building 331/347 modules 16 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\index.js
<s> [webpack.Progress] 49% building 332/347 modules 15 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\index.js
<s> [webpack.Progress] 49% building 333/347 modules 14 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\index.js
<s> [webpack.Progress] 50% building 334/347 modules 13 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\index.js
<s> [webpack.Progress] 50% building 334/348 modules 14 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\qs\lib\stringify.js
<s> [webpack.Progress] 50% building 335/348 modules 13 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\qs\lib\stringify.js
<s> [webpack.Progress] 50% building 335/349 modules 14 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\prop-types\lib\ReactPropTypesSecret.js
<s> [webpack.Progress] 50% building 335/350 modules 15 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\qs\lib\parse.js
<s> [webpack.Progress] 50% building 335/351 modules 16 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\qs\lib\formats.js
<s> [webpack.Progress] 50% building 335/352 modules 17 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\lib\defaultValues\createDefaultValue.js
<s> [webpack.Progress] 50% building 336/352 modules 16 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\lib\defaultValues\createDefaultValue.js
<s> [webpack.Progress] 50% building 337/352 modules 15 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\lib\defaultValues\createDefaultValue.js
<s> [webpack.Progress] 50% building 338/352 modules 14 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\lib\defaultValues\createDefaultValue.js
<s> [webpack.Progress] 50% building 338/353 modules 15 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\lib\inspection\index.js
<s> [webpack.Progress] 50% building 338/354 modules 16 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\source-loader\extract-source.js
<s> [webpack.Progress] 50% building 338/355 modules 17 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\lib\defaultValues\createFromRawDefaultProp.js
<s> [webpack.Progress] 50% building 338/356 modules 18 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\docgen\flow\createDefaultValue.js
<s> [webpack.Progress] 50% building 338/357 modules 19 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\docgen\flow\createType.js
<s> [webpack.Progress] 50% building 338/358 modules 20 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\docgen\typeScript\createDefaultValue.js
<s> [webpack.Progress] 50% building 338/359 modules 21 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\docgen\typeScript\createType.js
<s> [webpack.Progress] 50% building 338/360 modules 22 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.reflect.to-string-tag.js
<s> [webpack.Progress] 50% building 338/361 modules 23 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\icon\icon.js
<s> [webpack.Progress] 50% building 339/361 modules 22 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\icon\icon.js
<s> [webpack.Progress] 50% building 340/361 modules 21 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\icon\icon.js
<s> [webpack.Progress] 50% building 341/361 modules 20 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\icon\icon.js
<s> [webpack.Progress] 50% building 341/362 modules 21 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.math.to-string-tag.js
<s> [webpack.Progress] 50% building 341/363 modules 22 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.json.to-string-tag.js
<s> [webpack.Progress] 50% building 341/364 modules 23 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.symbol.unscopables.js
<s> [webpack.Progress] 50% building 341/365 modules 24 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.symbol.to-string-tag.js
<s> [webpack.Progress] 50% building 341/366 modules 25 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.symbol.to-primitive.js
<s> [webpack.Progress] 50% building 341/367 modules 26 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.symbol.split.js
<s> [webpack.Progress] 50% building 341/368 modules 27 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.symbol.species.js
<s> [webpack.Progress] 50% building 341/369 modules 28 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.symbol.search.js
<s> [webpack.Progress] 50% building 341/370 modules 29 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.symbol.replace.js
<s> [webpack.Progress] 50% building 341/371 modules 30 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\a-possible-prototype.js
<s> [webpack.Progress] 50% building 341/372 modules 31 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\correct-prototype-getter.js
<s> [webpack.Progress] 50% building 341/373 modules 32 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\html.js
<s> [webpack.Progress] 50% building 341/374 modules 33 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.symbol.match-all.js
<s> [webpack.Progress] 50% building 341/375 modules 34 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_Symbol.js
<s> [webpack.Progress] 50% building 341/376 modules 35 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\freezing.js
<s> [webpack.Progress] 50% building 341/377 modules 36 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\addon-panel\addon-panel.js
<s> [webpack.Progress] 50% building 341/378 modules 37 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_objectToString.js
<s> [webpack.Progress] 50% building 341/379 modules 38 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_getRawTag.js
<s> [webpack.Progress] 51% building 342/379 modules 37 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_getRawTag.js
<s> [webpack.Progress] 51% building 343/379 modules 36 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_getRawTag.js
<s> [webpack.Progress] 51% building 343/380 modules 37 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_overArg.js
<s> [webpack.Progress] 51% building 344/380 modules 36 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_overArg.js
<s> [webpack.Progress] 51% building 345/380 modules 35 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_overArg.js
<s> [webpack.Progress] 51% building 346/380 modules 34 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_overArg.js
<s> [webpack.Progress] 51% building 346/381 modules 35 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\typography\DocumentFormatting.js
<s> [webpack.Progress] 51% building 346/382 modules 36 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\iterator-close.js
<s> [webpack.Progress] 51% building 346/383 modules 37 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\get-iterator-method.js
<s> [webpack.Progress] 51% building 347/383 modules 36 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\get-iterator-method.js
<s> [webpack.Progress] 51% building 347/384 modules 37 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\is-array-iterator-method.js
<s> [webpack.Progress] 51% building 347/385 modules 38 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\bar\bar.js
<s> [webpack.Progress] 51% building 347/386 modules 39 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\bar\separator.js
<s> [webpack.Progress] 51% building 347/387 modules 40 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\bar\button.js
<s> [webpack.Progress] 51% building 347/388 modules 41 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_toSource.js
<s> [webpack.Progress] 51% building 347/389 modules 42 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\isObject.js
<s> [webpack.Progress] 51% building 347/390 modules 43 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_isMasked.js
<s> [webpack.Progress] 51% building 347/391 modules 44 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_ListCache.js
<s> [webpack.Progress] 51% building 348/391 modules 43 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_ListCache.js
<s> [webpack.Progress] 51% building 348/392 modules 44 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_stackSet.js
<s> [webpack.Progress] 51% building 348/393 modules 45 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_stackHas.js
<s> [webpack.Progress] 51% building 348/394 modules 46 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseIsEqualDeep.js
<s> [webpack.Progress] 51% building 349/394 modules 45 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseIsEqualDeep.js
<s> [webpack.Progress] 51% building 349/395 modules 46 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_stackGet.js
<s> [webpack.Progress] 51% building 349/396 modules 47 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\escodegen\escodegen.js
<s> [webpack.Progress] 51% building 349/397 modules 48 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\array-includes\shim.js
<s> [webpack.Progress] 51% building 349/398 modules 49 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\function.prototype.name\polyfill.js
<s> [webpack.Progress] 51% building 349/399 modules 50 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_stackDelete.js
<s> [webpack.Progress] 51% building 349/400 modules 51 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_stackClear.js
<s> [webpack.Progress] 51% building 349/401 modules 52 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.symbol.match.js
<s> [webpack.Progress] 51% building 349/402 modules 53 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.symbol.is-concat-spreadable.js
<s> [webpack.Progress] 51% building 349/403 modules 54 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\object-assign\index.js
<s> [webpack.Progress] 51% building 349/404 modules 55 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\csf\dist\index.js
<s> [webpack.Progress] 52% building 350/404 modules 54 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\csf\dist\index.js
<s> [webpack.Progress] 52% building 351/404 modules 53 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\csf\dist\index.js
<s> [webpack.Progress] 52% building 352/404 modules 52 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\csf\dist\index.js
<s> [webpack.Progress] 52% building 352/405 modules 53 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.symbol.has-instance.js
<s> [webpack.Progress] 52% building 353/405 modules 52 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.symbol.has-instance.js
<s> [webpack.Progress] 52% building 353/406 modules 53 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_root.js
<s> [webpack.Progress] 52% building 353/407 modules 54 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_nodeUtil.js
<s> [webpack.Progress] 52% building 353/408 modules 55 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseIsArguments.js
<s> [webpack.Progress] 52% building 353/409 modules 56 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseIsTypedArray.js
<s> [webpack.Progress] 52% building 354/409 modules 55 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseIsTypedArray.js
<s> [webpack.Progress] 52% building 355/409 modules 54 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseIsTypedArray.js
<s> [webpack.Progress] 52% building 356/409 modules 53 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseIsTypedArray.js
<s> [webpack.Progress] 52% building 357/409 modules 52 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseIsTypedArray.js
<s> [webpack.Progress] 52% building 358/409 modules 51 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseIsTypedArray.js
<s> [webpack.Progress] 53% building 359/409 modules 50 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseIsTypedArray.js
<s> [webpack.Progress] 53% building 360/409 modules 49 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseIsTypedArray.js
<s> [webpack.Progress] 53% building 361/409 modules 48 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseIsTypedArray.js
<s> [webpack.Progress] 53% building 362/409 modules 47 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseIsTypedArray.js
<s> [webpack.Progress] 53% building 363/409 modules 46 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseIsTypedArray.js
<s> [webpack.Progress] 53% building 364/409 modules 45 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseIsTypedArray.js
<s> [webpack.Progress] 53% building 365/409 modules 44 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseIsTypedArray.js
<s> [webpack.Progress] 53% building 366/409 modules 43 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseIsTypedArray.js
<s> [webpack.Progress] 53% building 366/410 modules 44 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\lib\convert\index.js
<s> [webpack.Progress] 53% building 366/411 modules 45 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.string.bold.js
<s> [webpack.Progress] 54% building 367/411 modules 44 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.string.bold.js
<s> [webpack.Progress] 54% building 368/411 modules 43 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.string.bold.js
<s> [webpack.Progress] 54% building 369/411 modules 42 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.string.bold.js
<s> [webpack.Progress] 54% building 370/411 modules 41 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.string.bold.js
<s> [webpack.Progress] 54% building 370/412 modules 42 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseUnary.js
<s> [webpack.Progress] 54% building 371/412 modules 41 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseUnary.js
<s> [webpack.Progress] 54% building 372/412 modules 40 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_baseUnary.js
<s> [webpack.Progress] 54% building 372/413 modules 41 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\stubFalse.js
<s> [webpack.Progress] 54% building 373/413 modules 40 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\stubFalse.js
<s> [webpack.Progress] 54% building 374/413 modules 39 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\stubFalse.js
<s> [webpack.Progress] 54% building 374/414 modules 40 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.symbol.async-iterator.js
<s> [webpack.Progress] 54% building 375/414 modules 39 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.symbol.async-iterator.js
<s> [webpack.Progress] 55% building 376/414 modules 38 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.symbol.async-iterator.js
<s> [webpack.Progress] 55% building 376/415 modules 39 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_castPath.js
<s> [webpack.Progress] 55% building 377/415 modules 38 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_castPath.js
<s> [webpack.Progress] 55% building 378/415 modules 37 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_castPath.js
<s> [webpack.Progress] 55% building 379/415 modules 36 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_castPath.js
<s> [webpack.Progress] 55% building 380/415 modules 35 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_castPath.js
<s> [webpack.Progress] 55% building 381/415 modules 34 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_castPath.js
<s> [webpack.Progress] 55% building 382/415 modules 33 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_castPath.js
<s> [webpack.Progress] 55% building 383/415 modules 32 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_castPath.js
<s> [webpack.Progress] 56% building 384/415 modules 31 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_castPath.js
<s> [webpack.Progress] 56% building 384/416 modules 32 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\channels\dist\index.js
<s> [webpack.Progress] 56% building 385/416 modules 31 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\channels\dist\index.js
<s> [webpack.Progress] 56% building 386/416 modules 30 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\channels\dist\index.js
<s> [webpack.Progress] 56% building 387/416 modules 29 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\channels\dist\index.js
<s> [webpack.Progress] 56% building 388/416 modules 28 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\channels\dist\index.js
<s> [webpack.Progress] 56% building 389/416 modules 27 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\channels\dist\index.js
<s> [webpack.Progress] 56% building 390/416 modules 26 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\channels\dist\index.js
<s> [webpack.Progress] 56% building 390/417 modules 27 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\html-tags\index.js
<s> [webpack.Progress] 56% building 390/418 modules 28 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\node_modules\uuid\dist\esm-browser\index.js
<s> [webpack.Progress] 56% building 391/418 modules 27 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\node_modules\uuid\dist\esm-browser\index.js
<s> [webpack.Progress] 57% building 392/418 modules 26 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\node_modules\uuid\dist\esm-browser\index.js
<s> [webpack.Progress] 57% building 393/418 modules 25 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\node_modules\uuid\dist\esm-browser\index.js
<s> [webpack.Progress] 57% building 394/418 modules 24 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\node_modules\uuid\dist\esm-browser\index.js
<s> [webpack.Progress] 57% building 395/418 modules 23 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\node_modules\uuid\dist\esm-browser\index.js
<s> [webpack.Progress] 57% building 396/418 modules 22 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\node_modules\uuid\dist\esm-browser\index.js
<s> [webpack.Progress] 57% building 397/418 modules 21 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\node_modules\uuid\dist\esm-browser\index.js
<s> [webpack.Progress] 57% building 398/418 modules 20 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\node_modules\uuid\dist\esm-browser\index.js
<s> [webpack.Progress] 57% building 399/418 modules 19 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\node_modules\uuid\dist\esm-browser\index.js
<s> [webpack.Progress] 57% building 400/418 modules 18 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\node_modules\uuid\dist\esm-browser\index.js
<s> [webpack.Progress] 58% building 401/418 modules 17 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\node_modules\uuid\dist\esm-browser\index.js
<s> [webpack.Progress] 58% building 402/418 modules 16 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\node_modules\uuid\dist\esm-browser\index.js
<s> [webpack.Progress] 58% building 403/418 modules 15 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\node_modules\uuid\dist\esm-browser\index.js
<s> [webpack.Progress] 58% building 404/418 modules 14 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\node_modules\uuid\dist\esm-browser\index.js
<s> [webpack.Progress] 58% building 404/419 modules 15 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\tabs\tabs.js
<s> [webpack.Progress] 58% building 404/420 modules 16 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\tooltip\TooltipLinkList.js
<s> [webpack.Progress] 58% building 404/421 modules 17 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\es6-shim\es6-shim.js
<s> [webpack.Progress] 58% building 405/421 modules 16 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\es6-shim\es6-shim.js
<s> [webpack.Progress] 58% building 406/421 modules 15 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\es6-shim\es6-shim.js
<s> [webpack.Progress] 58% building 407/421 modules 14 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\es6-shim\es6-shim.js
<s> [webpack.Progress] 58% building 408/421 modules 13 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\es6-shim\es6-shim.js
<s> [webpack.Progress] 59% building 409/421 modules 12 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\es6-shim\es6-shim.js
<s> [webpack.Progress] 59% building 409/422 modules 13 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.array.some.js
<s> [webpack.Progress] 59% building 409/423 modules 14 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\airbnb-js-shims\target\es2018.js
<s> [webpack.Progress] 59% building 410/423 modules 13 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\airbnb-js-shims\target\es2018.js
<s> [webpack.Progress] 59% building 411/423 modules 12 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\airbnb-js-shims\target\es2018.js
<s> [webpack.Progress] 59% building 412/423 modules 11 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\airbnb-js-shims\target\es2018.js
<s> [webpack.Progress] 59% building 413/423 modules 10 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\airbnb-js-shims\target\es2018.js
<s> [webpack.Progress] 59% building 414/423 modules 9 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\airbnb-js-shims\target\es2018.js
<s> [webpack.Progress] 59% building 415/423 modules 8 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\airbnb-js-shims\target\es2018.js
<s> [webpack.Progress] 59% building 415/424 modules 9 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\qs\lib\utils.js
<s> [webpack.Progress] 59% building 415/425 modules 10 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\escodegen\package.json
<s> [webpack.Progress] 59% building 416/425 modules 9 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\qs\lib\utils.js
<s> [webpack.Progress] 60% building 417/425 modules 8 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\qs\lib\utils.js
<s> [webpack.Progress] 60% building 418/425 modules 7 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\qs\lib\utils.js
<s> [webpack.Progress] 60% building 419/425 modules 6 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\qs\lib\utils.js
<s> [webpack.Progress] 60% building 419/426 modules 7 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\core\client.js
<s> [webpack.Progress] 60% building 419/427 modules 8 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\lib\defaultValues\generateArray.js
<s> [webpack.Progress] 60% building 419/428 modules 9 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\lib\inspection\types.js
<s> [webpack.Progress] 60% building 419/429 modules 10 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\blocks\index.js
<s> [webpack.Progress] 60% building 419/430 modules 11 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\controls\index.js
<s> [webpack.Progress] 60% building 419/431 modules 12 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\lib\defaultValues\generateObject.js
<s> [webpack.Progress] 60% building 420/431 modules 11 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\lib\defaultValues\generateObject.js
<s> [webpack.Progress] 60% building 421/431 modules 10 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\lib\defaultValues\generateObject.js
<s> [webpack.Progress] 60% building 422/431 modules 9 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\lib\defaultValues\generateObject.js
<s> [webpack.Progress] 60% building 422/432 modules 10 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\icon\svg.js
<s> [webpack.Progress] 60% building 422/433 modules 11 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\icon\icons.js
<s> [webpack.Progress] 60% building 422/434 modules 12 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\source-loader\dist\extract-source.js
<s> [webpack.Progress] 60% building 423/434 modules 11 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\source-loader\dist\extract-source.js
<s> [webpack.Progress] 60% building 423/435 modules 12 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\lib\inspection\inspectValue.js
<s> [webpack.Progress] 60% building 423/436 modules 13 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.reflect.construct.js
<s> [webpack.Progress] 60% building 423/437 modules 14 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\tooltip\TooltipNote.js
<s> [webpack.Progress] 60% building 423/438 modules 15 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\tooltip\WithTooltip.js
<s> [webpack.Progress] 60% building 423/439 modules 16 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\tooltip\TooltipMessage.js
<s> [webpack.Progress] 60% building 424/439 modules 15 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\tooltip\TooltipMessage.js
<s> [webpack.Progress] 60% building 424/440 modules 16 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\classof.js
<s> [webpack.Progress] 60% building 424/441 modules 17 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_coreJsData.js
<s> [webpack.Progress] 60% building 424/442 modules 18 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\html-tags\html-tags.json
<s> [webpack.Progress] 60% building 424/443 modules 19 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\node_modules\uuid\dist\esm-browser\v1.js
<s> [webpack.Progress] 60% building 424/444 modules 20 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_listCacheClear.js
<s> [webpack.Progress] 61% building 425/444 modules 19 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_listCacheClear.js
<s> [webpack.Progress] 61% building 425/445 modules 20 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\node_modules\uuid\dist\esm-browser\parse.js
<s> [webpack.Progress] 61% building 425/446 modules 21 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_getTag.js
<s> [webpack.Progress] 61% building 425/447 modules 22 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_Map.js
<s> [webpack.Progress] 61% building 425/448 modules 23 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_MapCache.js
<s> [webpack.Progress] 61% building 425/449 modules 24 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_equalObjects.js
<s> [webpack.Progress] 61% building 425/450 modules 25 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\function.prototype.name\implementation.js
<s> [webpack.Progress] 61% building 425/451 modules 26 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\array-includes\polyfill.js
<s> [webpack.Progress] 61% building 425/452 modules 27 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\object.values\shim.js
<s> [webpack.Progress] 61% building 425/453 modules 28 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\object.getownpropertydescriptors\shim.js
<s> [webpack.Progress] 61% building 425/454 modules 29 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\string.prototype.padend\shim.js
<s> [webpack.Progress] 61% building 425/455 modules 30 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_equalByTag.js
<s> [webpack.Progress] 61% building 425/456 modules 31 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\string.prototype.padstart\shim.js
<s> [webpack.Progress] 61% building 425/457 modules 32 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_equalArrays.js
<s> [webpack.Progress] 61% building 425/458 modules 33 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_listCacheSet.js
<s> [webpack.Progress] 61% building 425/459 modules 34 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_listCacheHas.js
<s> [webpack.Progress] 61% building 425/460 modules 35 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\node_modules\uuid\dist\esm-browser\stringify.js
<s> [webpack.Progress] 61% building 425/461 modules 36 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_listCacheGet.js
<s> [webpack.Progress] 61% building 425/462 modules 37 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_listCacheDelete.js
<s> [webpack.Progress] 61% building 425/463 modules 38 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\object.entries\shim.js
<s> [webpack.Progress] 61% building 426/463 modules 37 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\object.entries\shim.js
<s> [webpack.Progress] 61% building 426/464 modules 38 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\startCase.js
<s> [webpack.Progress] 61% building 426/465 modules 39 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\node_modules\uuid\dist\esm-browser\validate.js
<s> [webpack.Progress] 61% building 426/466 modules 40 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\shared\animation.js
<s> [webpack.Progress] 61% building 427/466 modules 39 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\shared\animation.js
<s> [webpack.Progress] 61% building 427/467 modules 40 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.object.set-prototype-of.js
<s> [webpack.Progress] 61% building 427/468 modules 41 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\form\index.js
<s> [webpack.Progress] 61% building 427/469 modules 42 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\Button\Button.js
<s> [webpack.Progress] 61% building 427/470 modules 43 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\Zoom\Zoom.js
<s> [webpack.Progress] 61% building 428/470 modules 42 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\Zoom\Zoom.js
<s> [webpack.Progress] 61% building 428/471 modules 43 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.object.get-prototype-of.js
<s> [webpack.Progress] 61% building 428/472 modules 44 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\ScrollArea\ScrollArea.js
<s> [webpack.Progress] 61% building 428/473 modules 45 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.object.create.js
<s> [webpack.Progress] 61% building 428/474 modules 46 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_freeGlobal.js
<s> [webpack.Progress] 61% building 428/475 modules 47 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\placeholder\placeholder.js
<s> [webpack.Progress] 61% building 429/475 modules 46 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\placeholder\placeholder.js
<s> [webpack.Progress] 61% building 430/475 modules 45 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\placeholder\placeholder.js
<s> [webpack.Progress] 61% building 431/475 modules 44 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\placeholder\placeholder.js
<s> [webpack.Progress] 61% building 432/475 modules 43 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\placeholder\placeholder.js
<s> [webpack.Progress] 61% building 433/475 modules 42 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\placeholder\placeholder.js
<s> [webpack.Progress] 61% building 433/476 modules 43 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\typography\shared.js
<s> [webpack.Progress] 62% building 434/476 modules 42 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\typography\shared.js
<s> [webpack.Progress] 62% building 434/477 modules 43 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\string-html-forced.js
<s> [webpack.Progress] 62% building 435/477 modules 42 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\string-html-forced.js
<s> [webpack.Progress] 62% building 435/478 modules 43 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\create-html.js
<s> [webpack.Progress] 62% building 436/478 modules 42 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\internals\create-html.js
<s> [webpack.Progress] 62% building 436/479 modules 43 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\toString.js
<s> [webpack.Progress] 62% building 437/479 modules 42 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\toString.js
<s> [webpack.Progress] 62% building 438/479 modules 41 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\toString.js
<s> [webpack.Progress] 62% building 439/479 modules 40 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\toString.js
<s> [webpack.Progress] 62% building 439/480 modules 41 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_stringToPath.js
<s> [webpack.Progress] 62% building 440/480 modules 40 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\_stringToPath.js
<s> [webpack.Progress] 62% building 440/481 modules 41 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\syntaxhighlighter\syntaxhighlighter.js
<s> [webpack.Progress] 62% building 441/481 modules 40 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\syntaxhighlighter\syntaxhighlighter.js
<s> [webpack.Progress] 63% building 442/481 modules 39 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\syntaxhighlighter\syntaxhighlighter.js
<s> [webpack.Progress] 63% building 443/481 modules 38 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\syntaxhighlighter\syntaxhighlighter.js
<s> [webpack.Progress] 63% building 444/481 modules 37 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\syntaxhighlighter\syntaxhighlighter.js
<s> [webpack.Progress] 63% building 445/481 modules 36 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\syntaxhighlighter\syntaxhighlighter.js
<s> [webpack.Progress] 63% building 446/481 modules 35 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\syntaxhighlighter\syntaxhighlighter.js
<s> [webpack.Progress] 63% building 447/481 modules 34 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\syntaxhighlighter\syntaxhighlighter.js
<s> [webpack.Progress] 63% building 448/481 modules 33 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\syntaxhighlighter\syntaxhighlighter.js
<s> [webpack.Progress] 63% building 449/481 modules 32 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\syntaxhighlighter\syntaxhighlighter.js
<s> [webpack.Progress] 64% building 450/481 modules 31 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\syntaxhighlighter\syntaxhighlighter.js
<s> [webpack.Progress] 64% building 451/481 modules 30 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\syntaxhighlighter\syntaxhighlighter.js
<s> [webpack.Progress] 64% building 452/481 modules 29 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\syntaxhighlighter\syntaxhighlighter.js
<s> [webpack.Progress] 64% building 453/481 modules 28 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\syntaxhighlighter\syntaxhighlighter.js
<s> [webpack.Progress] 64% building 454/481 modules 27 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\syntaxhighlighter\syntaxhighlighter.js
<s> [webpack.Progress] 64% building 455/481 modules 26 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\syntaxhighlighter\syntaxhighlighter.js
<s> [webpack.Progress] 64% building 456/481 modules 25 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\syntaxhighlighter\syntaxhighlighter.js
<s> [webpack.Progress] 64% building 457/481 modules 24 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\syntaxhighlighter\syntaxhighlighter.js
<s> [webpack.Progress] 64% building 458/481 modules 23 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\syntaxhighlighter\syntaxhighlighter.js
<s> [webpack.Progress] 65% building 459/481 modules 22 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\syntaxhighlighter\syntaxhighlighter.js
<s> [webpack.Progress] 65% building 460/481 modules 21 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\syntaxhighlighter\syntaxhighlighter.js
<s> [webpack.Progress] 65% building 461/481 modules 20 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\syntaxhighlighter\syntaxhighlighter.js
<s> [webpack.Progress] 65% building 462/481 modules 19 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\syntaxhighlighter\syntaxhighlighter.js
<s> [webpack.Progress] 65% building 463/481 modules 18 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\syntaxhighlighter\syntaxhighlighter.js
<s> [webpack.Progress] 65% building 464/481 modules 17 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\syntaxhighlighter\syntaxhighlighter.js
<s> [webpack.Progress] 65% building 465/481 modules 16 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\syntaxhighlighter\syntaxhighlighter.js
<s> [webpack.Progress] 65% building 466/481 modules 15 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\syntaxhighlighter\syntaxhighlighter.js
<s> [webpack.Progress] 66% building 467/481 modules 14 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\syntaxhighlighter\syntaxhighlighter.js
<s> [webpack.Progress] 66% building 468/481 modules 13 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\syntaxhighlighter\syntaxhighlighter.js
<s> [webpack.Progress] 66% building 469/481 modules 12 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\syntaxhighlighter\syntaxhighlighter.js
<s> [webpack.Progress] 66% building 470/481 modules 11 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\syntaxhighlighter\syntaxhighlighter.js
<s> [webpack.Progress] 66% building 471/481 modules 10 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\syntaxhighlighter\syntaxhighlighter.js
<s> [webpack.Progress] 66% building 471/482 modules 11 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\spaced\Spaced.js
<s> [webpack.Progress] 66% building 472/482 modules 10 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\spaced\Spaced.js
<s> [webpack.Progress] 66% building 473/482 modules 9 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\spaced\Spaced.js
<s> [webpack.Progress] 66% building 473/483 modules 10 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.promise.js
<s> [webpack.Progress] 66% building 474/483 modules 9 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.promise.js
<s> [webpack.Progress] 67% building 475/483 modules 8 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\core-js\modules\es.promise.js
<s> [webpack.Progress] 67% building 475/484 modules 9 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\process\browser.js
<s> [webpack.Progress] 67% building 475/485 modules 10 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\functions-have-names\index.js
<s> [webpack.Progress] 67% building 475/486 modules 11 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\define-properties\index.js
<s> [webpack.Progress] 67% building 476/486 modules 10 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\define-properties\index.js
<s> [webpack.Progress] 67% building 477/486 modules 9 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\define-properties\index.js
<s> [webpack.Progress] 67% building 478/486 modules 8 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\define-properties\index.js
<s> [webpack.Progress] 67% building 478/487 modules 9 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\node_modules\uuid\dist\esm-browser\rng.js
<s> [webpack.Progress] 67% building 479/487 modules 8 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\node_modules\uuid\dist\esm-browser\rng.js
<s> [webpack.Progress] 67% building 480/487 modules 7 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\node_modules\uuid\dist\esm-browser\rng.js
<s> [webpack.Progress] 67% building 480/488 modules 8 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\airbnb-js-shims\target\es2019.js
<s> [webpack.Progress] 67% building 481/488 modules 7 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\airbnb-js-shims\target\es2019.js
<s> [webpack.Progress] 67% building 481/489 modules 8 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-actions\node_modules\uuid\dist\esm-browser\regex.js
<s> [webpack.Progress] 67% building 481/490 modules 9 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\lodash\isString.js
<s> [webpack.Progress] 67% building 481/491 modules 10 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\tooltip\ListItem.js
<s> [webpack.Progress] 67% building 481/492 modules 11 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\blocks\Description.js
<s> [webpack.Progress] 67% building 481/493 modules 12 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\controls\types.js
<s> [webpack.Progress] 67% building 481/494 modules 13 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\controls\Text.js
<s> [webpack.Progress] 67% building 481/495 modules 14 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\controls\Range.js
<s> [webpack.Progress] 67% building 482/495 modules 13 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\controls\Range.js
<s> [webpack.Progress] 67% building 483/495 modules 12 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\controls\Range.js
<s> [webpack.Progress] 67% building 483/496 modules 13 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\addon-docs\dist\frameworks\react\lib\inspection\acornParser.js
<s> [webpack.Progress] 67% building 483/497 modules 14 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\tooltip\Tooltip.js
<s> [webpack.Progress] 68% building 484/497 modules 13 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\components\dist\tooltip\Tooltip.js
<s> [webpack.Progress] 68% building 484/498 modules 14 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\react-dom\index.js
<s> [webpack.Progress] 68% building 485/498 modules 13 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\react-dom\index.js
<s> [webpack.Progress] 68% building 486/498 modules 12 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\react-dom\index.js
<s> [webpack.Progress] 68% building 486/499 modules 13 active C:\Users\ferna\Documents\Fernando\stone\desafio-frontend\node_modules\@storybook\source-loader\dist\types.js