-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild-storybook.log
3276 lines (3274 loc) · 698 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
info @storybook/react v6.5.5
info
info => Cleaning outputDir: /var/folders/wj/4vq30cb106vgsdx4b81d6w5c0000gn/T/chromatic--31512-BoTG0wsrgQu5
info => Loading presets
info => Compiling manager..
info => Compiling preview..
info Addon-docs: using MDX1
info => Using implicit CSS loaders
(node:31524) DeprecationWarning: Default PostCSS plugins are deprecated. When switching to '@storybook/addon-postcss',
you will need to add your own plugins, such as 'postcss-flexbugs-fixes' and 'autoprefixer'.
See https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#deprecated-default-postcss-plugins for details.
(Use `node --trace-deprecation ...` to show where the warning was created)
info => Using default Webpack4 setup
<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 /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/core-client/dist/esm/globals/polyfills.js /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/core-client/dist/esm/globals/globals.js /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/storybook-init-framework-entry.js /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/react/dist/esm/client/docs/config-generated-config-entry.js /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/react/dist/esm/client/preview/config-generated-config-entry.js /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-links/preview.js-generated-config-entry.js /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/preview.js-generated-config-entry.js /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/preview.js-generated-config-entry.js /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-backgrounds/preview.js-generated-config-entry.js /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-measure/preview.js-generated-config-entry.js /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-outline/preview.js-generated-config-entry.js /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-interactions/preview.js-generated-config-entry.js /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/.storybook/preview.js-generated-config-entry.js /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/generated-stories-entry.js
<s> [webpack.Progress] 10% building 1/1 modules 0 active
<s> [webpack.Progress] 10% building 1/2 modules 1 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-links/preview.js-generated-config-entry.js
<s> [webpack.Progress] 10% building 1/3 modules 2 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/preview.js-generated-config-entry.js
<s> [webpack.Progress] 10% building 1/4 modules 3 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/preview.js-generated-config-entry.js
<s> [webpack.Progress] 10% building 1/5 modules 4 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-backgrounds/preview.js-generated-config-entry.js
<s> [webpack.Progress] 10% building 1/6 modules 5 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-measure/preview.js-generated-config-entry.js
<s> [webpack.Progress] 10% building 1/7 modules 6 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-interactions/preview.js-generated-config-entry.js
<s> [webpack.Progress] 10% building 1/8 modules 7 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-outline/preview.js-generated-config-entry.js
<s> [webpack.Progress] 10% building 2/8 modules 6 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-outline/preview.js-generated-config-entry.js
<s> [webpack.Progress] 10% building 3/8 modules 5 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-outline/preview.js-generated-config-entry.js
<s> [webpack.Progress] 10% building 4/8 modules 4 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-outline/preview.js-generated-config-entry.js
<s> [webpack.Progress] 10% building 5/8 modules 3 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-outline/preview.js-generated-config-entry.js
<s> [webpack.Progress] 10% building 6/8 modules 2 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-outline/preview.js-generated-config-entry.js
<s> [webpack.Progress] 10% building 7/8 modules 1 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-outline/preview.js-generated-config-entry.js
<s> [webpack.Progress] 10% building 8/8 modules 0 active
<s> [webpack.Progress] 10% building 8/9 modules 1 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/storybook-init-framework-entry.js
<s> [webpack.Progress] 10% building 8/10 modules 2 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/generated-stories-entry.js
<s> [webpack.Progress] 10% building 8/11 modules 3 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/.storybook/preview.js-generated-config-entry.js
<s> [webpack.Progress] 10% building 8/12 modules 4 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-links/preview.js
<s> [webpack.Progress] 10% building 8/13 modules 5 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/preview.js
<s> [webpack.Progress] 10% building 8/14 modules 6 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/preview.js
<s> [webpack.Progress] 10% building 8/15 modules 7 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-backgrounds/preview.js
<s> [webpack.Progress] 10% building 8/16 modules 8 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-measure/preview.js
<s> [webpack.Progress] 10% building 8/17 modules 9 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-interactions/preview.js
<s> [webpack.Progress] 10% building 8/18 modules 10 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-outline/preview.js
<s> [webpack.Progress] 10% building 8/19 modules 11 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/core-client/dist/esm/globals/polyfills.js
<s> [webpack.Progress] 10% building 8/20 modules 12 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/core-client/dist/esm/globals/globals.js
<s> [webpack.Progress] 10% building 8/21 modules 13 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/react/dist/esm/client/docs/config-generated-config-entry.js
<s> [webpack.Progress] 10% building 8/22 modules 14 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/react/dist/esm/client/preview/config-generated-config-entry.js
<s> [webpack.Progress] 11% building 9/22 modules 13 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/react/dist/esm/client/preview/config-generated-config-entry.js
<s> [webpack.Progress] 11% building 10/22 modules 12 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/core-client/dist/esm/globals/globals.js
<s> [webpack.Progress] 11% building 11/22 modules 11 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/core-client/dist/esm/globals/globals.js
<s> [webpack.Progress] 11% building 12/22 modules 10 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/core-client/dist/esm/globals/globals.js
<s> [webpack.Progress] 11% building 13/22 modules 9 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/core-client/dist/esm/globals/globals.js
<s> [webpack.Progress] 11% building 14/22 modules 8 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/core-client/dist/esm/globals/globals.js
<s> [webpack.Progress] 11% building 15/22 modules 7 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/core-client/dist/esm/globals/globals.js
<s> [webpack.Progress] 11% building 16/22 modules 6 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/core-client/dist/esm/globals/globals.js
<s> [webpack.Progress] 12% building 17/22 modules 5 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/core-client/dist/esm/globals/globals.js
<s> [webpack.Progress] 12% building 18/22 modules 4 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/core-client/dist/esm/globals/globals.js
<s> [webpack.Progress] 12% building 19/22 modules 3 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/.storybook/preview.js-generated-config-entry.js
<s> [webpack.Progress] 12% building 19/23 modules 4 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/react/dist/esm/client/docs/config.js
<s> [webpack.Progress] 12% building 19/24 modules 5 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/react/dist/esm/client/preview/config.js
<s> [webpack.Progress] 12% building 20/24 modules 4 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/react/dist/esm/client/preview/config.js
<s> [webpack.Progress] 12% building 21/24 modules 3 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/react/dist/esm/client/preview/config.js
<s> [webpack.Progress] 12% building 22/24 modules 2 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/react/dist/esm/client/preview/config.js
<s> [webpack.Progress] 12% building 22/25 modules 3 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src sync /^\.(?:(?:^|\/|(?:(?:(?!(?:^|\/)\.).)*?)\/)(?!\.)(?=.)[^/]*?\.stories\.mdx)$/
<s> [webpack.Progress] 12% building 22/26 modules 4 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src sync /^\.(?:(?:^|\/|(?:(?:(?!(?:^|\/)\.).)*?)\/)(?!\.)(?=.)[^/]*?\.stories\.(js|jsx|ts|tsx))$/
<s> [webpack.Progress] 12% building 23/26 modules 3 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src sync /^\.(?:(?:^|\/|(?:(?:(?!(?:^|\/)\.).)*?)\/)(?!\.)(?=.)[^/]*?\.stories\.(js|jsx|ts|tsx))$/
<s> [webpack.Progress] 12% building 24/26 modules 2 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src sync /^\.(?:(?:^|\/|(?:(?:(?!(?:^|\/)\.).)*?)\/)(?!\.)(?=.)[^/]*?\.stories\.(js|jsx|ts|tsx))$/
<s> [webpack.Progress] 12% building 24/27 modules 3 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/.storybook/preview.js
<s> [webpack.Progress] 12% building 24/28 modules 4 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-backgrounds/dist/esm/preview.js
<s> [webpack.Progress] 12% building 24/29 modules 5 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-measure/dist/esm/preview.js
<s> [webpack.Progress] 12% building 24/30 modules 6 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/preview.js
<s> [webpack.Progress] 12% building 24/31 modules 7 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-links/dist/esm/preview.js
<s> [webpack.Progress] 12% building 24/32 modules 8 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-outline/dist/esm/preset/preview.js
<s> [webpack.Progress] 12% building 24/33 modules 9 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-interactions/dist/esm/preset/preview.js
<s> [webpack.Progress] 12% building 24/34 modules 10 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/preset/preview.js
<s> [webpack.Progress] 13% building 25/34 modules 9 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/preset/preview.js
<s> [webpack.Progress] 13% building 26/34 modules 8 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/preset/preview.js
<s> [webpack.Progress] 13% building 27/34 modules 7 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/preset/preview.js
<s> [webpack.Progress] 13% building 28/34 modules 6 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/preset/preview.js
<s> [webpack.Progress] 13% building 28/35 modules 7 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.object.keys.js
<s> [webpack.Progress] 13% building 28/36 modules 8 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.array.filter.js
<s> [webpack.Progress] 13% building 28/37 modules 9 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.symbol.js
<s> [webpack.Progress] 13% building 28/38 modules 10 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.object.get-own-property-descriptor.js
<s> [webpack.Progress] 13% building 28/39 modules 11 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/web.dom-collections.for-each.js
<s> [webpack.Progress] 13% building 28/40 modules 12 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.object.get-own-property-descriptors.js
<s> [webpack.Progress] 13% building 28/41 modules 13 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.object.define-properties.js
<s> [webpack.Progress] 13% building 28/42 modules 14 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.object.define-property.js
<s> [webpack.Progress] 13% building 29/42 modules 13 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.object.define-property.js
<s> [webpack.Progress] 13% building 30/42 modules 12 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.object.define-property.js
<s> [webpack.Progress] 13% building 31/42 modules 11 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.object.define-property.js
<s> [webpack.Progress] 13% building 31/43 modules 12 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/regenerator-runtime/runtime.js
<s> [webpack.Progress] 13% building 32/43 modules 11 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/regenerator-runtime/runtime.js
<s> [webpack.Progress] 13% building 32/44 modules 12 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/react/dist/esm/client/docs/extractArgTypes.js
<s> [webpack.Progress] 13% building 32/45 modules 13 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/react/dist/esm/client/docs/jsxDecorator.js
<s> [webpack.Progress] 13% building 33/45 modules 12 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/react/dist/esm/client/docs/jsxDecorator.js
<s> [webpack.Progress] 13% building 33/46 modules 13 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/react/dist/esm/client/preview/render.js
<s> [webpack.Progress] 13% building 33/47 modules 14 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/webpack/buildin/module.js
<s> [webpack.Progress] 13% building 33/48 modules 15 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.object.to-string.js
<s> [webpack.Progress] 13% building 33/49 modules 16 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.promise.js
<s> [webpack.Progress] 14% building 34/49 modules 15 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.promise.js
<s> [webpack.Progress] 14% building 35/49 modules 14 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.promise.js
<s> [webpack.Progress] 14% building 36/49 modules 13 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.promise.js
<s> [webpack.Progress] 14% building 37/49 modules 12 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.promise.js
<s> [webpack.Progress] 14% building 38/49 modules 11 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.promise.js
<s> [webpack.Progress] 14% building 39/49 modules 10 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.promise.js
<s> [webpack.Progress] 14% building 40/49 modules 9 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.promise.js
<s> [webpack.Progress] 14% building 41/49 modules 8 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.promise.js
<s> [webpack.Progress] 14% building 41/50 modules 9 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 14% building 41/51 modules 10 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.object.entries.js
<s> [webpack.Progress] 14% building 41/52 modules 11 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.function.name.js
<s> [webpack.Progress] 14% building 41/53 modules 12 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.symbol.description.js
<s> [webpack.Progress] 14% building 41/54 modules 13 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.symbol.iterator.js
<s> [webpack.Progress] 14% building 41/55 modules 14 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.array.iterator.js
<s> [webpack.Progress] 14% building 41/56 modules 15 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.string.iterator.js
<s> [webpack.Progress] 14% building 41/57 modules 16 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/web.dom-collections.iterator.js
<s> [webpack.Progress] 14% building 41/58 modules 17 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.array.slice.js
<s> [webpack.Progress] 14% building 41/59 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.array.from.js
<s> [webpack.Progress] 14% building 41/60 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.regexp.exec.js
<s> [webpack.Progress] 14% building 41/61 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/index.js
<s> [webpack.Progress] 15% building 42/61 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/index.js
<s> [webpack.Progress] 15% building 43/61 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/index.js
<s> [webpack.Progress] 15% building 44/61 modules 17 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/index.js
<s> [webpack.Progress] 15% building 45/61 modules 16 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/index.js
<s> [webpack.Progress] 15% building 46/61 modules 15 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/index.js
<s> [webpack.Progress] 15% building 47/61 modules 14 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/index.js
<s> [webpack.Progress] 15% building 48/61 modules 13 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/index.js
<s> [webpack.Progress] 15% building 48/62 modules 14 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-links/dist/esm/index.js
<s> [webpack.Progress] 15% building 48/63 modules 15 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-measure/dist/esm/withMeasure.js
<s> [webpack.Progress] 15% building 48/64 modules 16 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-measure/dist/esm/constants.js
<s> [webpack.Progress] 15% building 49/64 modules 15 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-measure/dist/esm/constants.js
<s> [webpack.Progress] 15% building 49/65 modules 16 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-backgrounds/dist/esm/decorators/withBackground.js
<s> [webpack.Progress] 15% building 49/66 modules 17 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-backgrounds/dist/esm/decorators/withGrid.js
<s> [webpack.Progress] 15% building 49/67 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-outline/dist/esm/withOutline.js
<s> [webpack.Progress] 15% building 49/68 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-outline/dist/esm/constants.js
<s> [webpack.Progress] 16% building 50/68 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-outline/dist/esm/constants.js
<s> [webpack.Progress] 16% building 51/68 modules 17 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-outline/dist/esm/constants.js
<s> [webpack.Progress] 16% building 52/68 modules 16 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-outline/dist/esm/constants.js
<s> [webpack.Progress] 16% building 53/68 modules 15 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-outline/dist/esm/constants.js
<s> [webpack.Progress] 16% building 54/68 modules 14 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-outline/dist/esm/constants.js
<s> [webpack.Progress] 16% building 55/68 modules 13 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-outline/dist/esm/constants.js
<s> [webpack.Progress] 16% building 56/68 modules 12 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-outline/dist/esm/constants.js
<s> [webpack.Progress] 16% building 57/68 modules 11 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-outline/dist/esm/constants.js
<s> [webpack.Progress] 16% building 58/68 modules 10 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-outline/dist/esm/constants.js
<s> [webpack.Progress] 17% building 59/68 modules 9 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-outline/dist/esm/constants.js
<s> [webpack.Progress] 17% building 60/68 modules 8 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-outline/dist/esm/constants.js
<s> [webpack.Progress] 17% building 60/69 modules 9 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/preset/addDecorator.js
<s> [webpack.Progress] 17% building 60/70 modules 10 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/preset/addArgs.js
<s> [webpack.Progress] 17% building 61/70 modules 9 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/preset/addArgs.js
<s> [webpack.Progress] 17% building 61/71 modules 10 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/react/dist/esm/client/index.js
<s> [webpack.Progress] 17% building 61/72 modules 11 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--8-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/mdx1-csf/loader.js!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/Introduction.stories.mdx
<s> [webpack.Progress] 17% building 62/72 modules 10 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--8-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/mdx1-csf/loader.js!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/Introduction.stories.mdx
<s> [webpack.Progress] 17% building 63/72 modules 9 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--8-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/mdx1-csf/loader.js!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/Introduction.stories.mdx
<s> [webpack.Progress] 17% building 64/72 modules 8 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--8-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/mdx1-csf/loader.js!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/Introduction.stories.mdx
<s> [webpack.Progress] 17% building 64/73 modules 9 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.symbol.constructor.js
<s> [webpack.Progress] 17% building 64/74 modules 10 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.symbol.for.js
<s> [webpack.Progress] 17% building 64/75 modules 11 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.symbol.key-for.js
<s> [webpack.Progress] 17% building 64/76 modules 12 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.json.stringify.js
<s> [webpack.Progress] 17% building 64/77 modules 13 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.object.get-own-property-symbols.js
<s> [webpack.Progress] 17% building 64/78 modules 14 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/Button.stories.jsx
<s> [webpack.Progress] 17% building 64/79 modules 15 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/Header.stories.jsx
<s> [webpack.Progress] 17% building 64/80 modules 16 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/Page.stories.jsx
<s> [webpack.Progress] 17% building 65/80 modules 15 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/Page.stories.jsx
<s> [webpack.Progress] 17% building 66/80 modules 14 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/Page.stories.jsx
<s> [webpack.Progress] 18% building 67/80 modules 13 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/Page.stories.jsx
<s> [webpack.Progress] 18% building 68/80 modules 12 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/Page.stories.jsx
<s> [webpack.Progress] 18% building 68/81 modules 13 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/export.js
<s> [webpack.Progress] 18% building 68/82 modules 14 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/fails.js
<s> [webpack.Progress] 18% building 68/83 modules 15 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/to-indexed-object.js
<s> [webpack.Progress] 18% building 68/84 modules 16 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/descriptors.js
<s> [webpack.Progress] 18% building 68/85 modules 17 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-get-own-property-descriptor.js
<s> [webpack.Progress] 18% building 68/86 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/array-iteration.js
<s> [webpack.Progress] 18% building 68/87 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/array-method-has-species-support.js
<s> [webpack.Progress] 18% building 68/88 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/to-object.js
<s> [webpack.Progress] 18% building 68/89 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-define-properties.js
<s> [webpack.Progress] 18% building 68/90 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-keys.js
<s> [webpack.Progress] 18% building 68/91 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/own-keys.js
<s> [webpack.Progress] 18% building 68/92 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/create-property.js
<s> [webpack.Progress] 18% building 68/93 modules 25 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-define-property.js
<s> [webpack.Progress] 18% building 68/94 modules 26 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/global.js
<s> [webpack.Progress] 18% building 68/95 modules 27 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/dom-iterables.js
<s> [webpack.Progress] 18% building 68/96 modules 28 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/dom-token-list-prototype.js
<s> [webpack.Progress] 18% building 68/97 modules 29 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/array-for-each.js
<s> [webpack.Progress] 18% building 68/98 modules 30 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/create-non-enumerable-property.js
<s> [webpack.Progress] 18% building 68/99 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.object.freeze.js
<s> [webpack.Progress] 18% building 68/100 modules 32 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/react/dist/esm/client/docs/extractProps.js
<s> [webpack.Progress] 18% building 69/100 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/react/dist/esm/client/docs/extractProps.js
<s> [webpack.Progress] 18% building 70/100 modules 30 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/react/dist/esm/client/docs/extractProps.js
<s> [webpack.Progress] 18% building 70/101 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/airbnb-js-shims/index.js
<s> [webpack.Progress] 18% building 70/102 modules 32 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.promise.constructor.js
<s> [webpack.Progress] 18% building 70/103 modules 33 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/to-string-tag-support.js
<s> [webpack.Progress] 18% building 70/104 modules 34 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/global/window.js
<s> [webpack.Progress] 18% building 70/105 modules 35 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.array.join.js
<s> [webpack.Progress] 18% building 71/105 modules 34 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.array.join.js
<s> [webpack.Progress] 18% building 71/106 modules 35 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-to-string.js
<s> [webpack.Progress] 18% building 71/107 modules 36 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/webpack/buildin/harmony-module.js
<s> [webpack.Progress] 18% building 72/107 modules 35 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/webpack/buildin/harmony-module.js
<s> [webpack.Progress] 18% building 73/107 modules 34 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/webpack/buildin/harmony-module.js
<s> [webpack.Progress] 18% building 74/107 modules 33 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/webpack/buildin/harmony-module.js
<s> [webpack.Progress] 19% building 75/107 modules 32 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/webpack/buildin/harmony-module.js
<s> [webpack.Progress] 19% building 76/107 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/webpack/buildin/harmony-module.js
<s> [webpack.Progress] 19% building 76/108 modules 32 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/define-well-known-symbol.js
<s> [webpack.Progress] 19% building 76/109 modules 33 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/string-multibyte.js
<s> [webpack.Progress] 19% building 76/110 modules 34 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/regexp-exec.js
<s> [webpack.Progress] 19% building 76/111 modules 35 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.array.concat.js
<s> [webpack.Progress] 19% building 76/112 modules 36 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/ClientApi.js
<s> [webpack.Progress] 19% building 77/112 modules 35 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/ClientApi.js
<s> [webpack.Progress] 19% building 78/112 modules 34 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/ClientApi.js
<s> [webpack.Progress] 19% building 79/112 modules 33 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/ClientApi.js
<s> [webpack.Progress] 19% building 80/112 modules 32 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/ClientApi.js
<s> [webpack.Progress] 19% building 81/112 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/ClientApi.js
<s> [webpack.Progress] 19% building 82/112 modules 30 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/ClientApi.js
<s> [webpack.Progress] 19% building 83/112 modules 29 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/ClientApi.js
<s> [webpack.Progress] 20% building 84/112 modules 28 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/ClientApi.js
<s> [webpack.Progress] 20% building 85/112 modules 27 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/ClientApi.js
<s> [webpack.Progress] 20% building 86/112 modules 26 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/ClientApi.js
<s> [webpack.Progress] 20% building 87/112 modules 25 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/ClientApi.js
<s> [webpack.Progress] 20% building 88/112 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/ClientApi.js
<s> [webpack.Progress] 20% building 89/112 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/ClientApi.js
<s> [webpack.Progress] 20% building 90/112 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/ClientApi.js
<s> [webpack.Progress] 20% building 91/112 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/ClientApi.js
<s> [webpack.Progress] 21% building 92/112 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/ClientApi.js
<s> [webpack.Progress] 21% building 93/112 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/ClientApi.js
<s> [webpack.Progress] 21% building 94/112 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/ClientApi.js
<s> [webpack.Progress] 21% building 95/112 modules 17 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/ClientApi.js
<s> [webpack.Progress] 21% building 96/112 modules 16 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/ClientApi.js
<s> [webpack.Progress] 21% building 97/112 modules 15 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/ClientApi.js
<s> [webpack.Progress] 21% building 98/112 modules 14 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/ClientApi.js
<s> [webpack.Progress] 21% building 99/112 modules 13 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/ClientApi.js
<s> [webpack.Progress] 22% building 100/112 modules 12 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/ClientApi.js
<s> [webpack.Progress] 22% building 100/113 modules 13 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/queryparams.js
<s> [webpack.Progress] 22% building 101/113 modules 12 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/queryparams.js
<s> [webpack.Progress] 22% building 102/113 modules 11 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/queryparams.js
<s> [webpack.Progress] 22% building 102/114 modules 12 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/react-dom/client.js
<s> [webpack.Progress] 22% building 103/114 modules 11 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/react-dom/client.js
<s> [webpack.Progress] 22% building 103/115 modules 12 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-backgrounds/dist/esm/constants.js
<s> [webpack.Progress] 22% building 104/115 modules 11 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-backgrounds/dist/esm/constants.js
<s> [webpack.Progress] 22% building 105/115 modules 10 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-backgrounds/dist/esm/constants.js
<s> [webpack.Progress] 22% building 106/115 modules 9 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-backgrounds/dist/esm/constants.js
<s> [webpack.Progress] 22% building 106/116 modules 10 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-outline/dist/esm/helpers.js
<s> [webpack.Progress] 22% building 106/117 modules 11 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-outline/dist/esm/outlineCSS.js
<s> [webpack.Progress] 22% building 106/118 modules 12 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-links/dist/esm/utils.js
<s> [webpack.Progress] 22% building 107/118 modules 11 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-links/dist/esm/utils.js
<s> [webpack.Progress] 22% building 107/119 modules 12 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-measure/dist/esm/util.js
<s> [webpack.Progress] 22% building 107/120 modules 13 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/preset/addArgsHelpers.js
<s> [webpack.Progress] 22% building 107/121 modules 14 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/index.js
<s> [webpack.Progress] 22% building 108/121 modules 13 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/index.js
<s> [webpack.Progress] 22% building 108/122 modules 14 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-to-array.js
<s> [webpack.Progress] 22% building 108/123 modules 15 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/check-correctness-of-iteration.js
<s> [webpack.Progress] 22% building 108/124 modules 16 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/features/symbol/index.js
<s> [webpack.Progress] 22% building 108/125 modules 17 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/types.js
<s> [webpack.Progress] 23% building 109/125 modules 16 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/types.js
<s> [webpack.Progress] 23% building 109/126 modules 17 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/native-symbol-registry.js
<s> [webpack.Progress] 23% building 109/127 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/internal-state.js
<s> [webpack.Progress] 23% building 109/128 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/native-symbol.js
<s> [webpack.Progress] 23% building 109/129 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-get-own-property-symbols.js
<s> [webpack.Progress] 23% building 110/129 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-get-own-property-symbols.js
<s> [webpack.Progress] 23% building 111/129 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-get-own-property-symbols.js
<s> [webpack.Progress] 23% building 111/130 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-measure/dist/esm/box-model/canvas.js
<s> [webpack.Progress] 23% building 111/131 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-measure/dist/esm/box-model/visualizer.js
<s> [webpack.Progress] 23% building 111/132 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/docs-tools/dist/esm/index.js
<s> [webpack.Progress] 23% building 112/132 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/docs-tools/dist/esm/index.js
<s> [webpack.Progress] 23% building 112/133 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/indexed-object.js
<s> [webpack.Progress] 23% building 112/134 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/is-forced.js
<s> [webpack.Progress] 23% building 112/135 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/ie8-dom-define.js
<s> [webpack.Progress] 23% building 112/136 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/has-own-property.js
<s> [webpack.Progress] 23% building 112/137 modules 25 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/array-species-create.js
<s> [webpack.Progress] 23% building 112/138 modules 26 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/function-bind-context.js
<s> [webpack.Progress] 23% building 112/139 modules 27 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/require-object-coercible.js
<s> [webpack.Progress] 23% building 112/140 modules 28 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/engine-v8-version.js
<s> [webpack.Progress] 23% building 112/141 modules 29 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/an-object.js
<s> [webpack.Progress] 23% building 112/142 modules 30 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/to-property-key.js
<s> [webpack.Progress] 23% building 112/143 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-keys-internal.js
<s> [webpack.Progress] 23% building 112/144 modules 32 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/enum-bug-keys.js
<s> [webpack.Progress] 23% building 112/145 modules 33 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/get-built-in.js
<s> [webpack.Progress] 23% building 112/146 modules 34 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/document-create-element.js
<s> [webpack.Progress] 23% building 112/147 modules 35 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/array-method-is-strict.js
<s> [webpack.Progress] 23% building 112/148 modules 36 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/create-property-descriptor.js
<s> [webpack.Progress] 23% building 113/148 modules 35 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/create-property-descriptor.js
<s> [webpack.Progress] 23% building 114/148 modules 34 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/create-property-descriptor.js
<s> [webpack.Progress] 23% building 115/148 modules 33 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/create-property-descriptor.js
<s> [webpack.Progress] 23% building 115/149 modules 34 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/internal-metadata.js
<s> [webpack.Progress] 23% building 116/149 modules 33 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/internal-metadata.js
<s> [webpack.Progress] 24% building 117/149 modules 32 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/internal-metadata.js
<s> [webpack.Progress] 24% building 118/149 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/internal-metadata.js
<s> [webpack.Progress] 24% building 119/149 modules 30 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/internal-metadata.js
<s> [webpack.Progress] 24% building 119/150 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.object.assign.js
<s> [webpack.Progress] 24% building 119/151 modules 32 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/new-promise-capability.js
<s> [webpack.Progress] 24% building 119/152 modules 33 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/promise-constructor-detection.js
<s> [webpack.Progress] 24% building 120/152 modules 32 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/promise-constructor-detection.js
<s> [webpack.Progress] 24% building 121/152 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/promise-constructor-detection.js
<s> [webpack.Progress] 24% building 122/152 modules 30 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/promise-constructor-detection.js
<s> [webpack.Progress] 24% building 123/152 modules 29 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/promise-constructor-detection.js
<s> [webpack.Progress] 24% building 124/152 modules 28 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/promise-constructor-detection.js
<s> [webpack.Progress] 24% building 124/153 modules 29 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/well-known-symbol.js
<s> [webpack.Progress] 24% building 124/154 modules 30 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/index.js
<s> [webpack.Progress] 25% building 125/154 modules 29 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/index.js
<s> [webpack.Progress] 25% building 125/155 modules 30 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.string.search.js
<s> [webpack.Progress] 25% building 125/156 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.regexp.to-string.js
<s> [webpack.Progress] 25% building 125/157 modules 32 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.array.map.js
<s> [webpack.Progress] 25% building 125/158 modules 33 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.string.match.js
<s> [webpack.Progress] 25% building 125/159 modules 34 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/classof.js
<s> [webpack.Progress] 25% building 126/159 modules 33 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/classof.js
<s> [webpack.Progress] 25% building 127/159 modules 32 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/classof.js
<s> [webpack.Progress] 25% building 128/159 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/classof.js
<s> [webpack.Progress] 25% building 129/159 modules 30 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/classof.js
<s> [webpack.Progress] 25% building 129/160 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/airbnb-js-shims/target/es5.js
<s> [webpack.Progress] 25% building 130/160 modules 30 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/airbnb-js-shims/target/es5.js
<s> [webpack.Progress] 25% building 130/161 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/function-uncurry-this.js
<s> [webpack.Progress] 25% building 131/161 modules 30 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/function-uncurry-this.js
<s> [webpack.Progress] 25% building 131/162 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/path.js
<s> [webpack.Progress] 25% building 131/163 modules 32 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/function-call.js
<s> [webpack.Progress] 25% building 131/164 modules 33 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.regexp.constructor.js
<s> [webpack.Progress] 25% building 132/164 modules 32 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.regexp.constructor.js
<s> [webpack.Progress] 25% building 132/165 modules 33 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/jest-mock/build/index.js
<s> [webpack.Progress] 25% building 133/165 modules 32 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/jest-mock/build/index.js
<s> [webpack.Progress] 26% building 134/165 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/jest-mock/build/index.js
<s> [webpack.Progress] 26% building 135/165 modules 30 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/jest-mock/build/index.js
<s> [webpack.Progress] 26% building 136/165 modules 29 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/jest-mock/build/index.js
<s> [webpack.Progress] 26% building 137/165 modules 28 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/jest-mock/build/index.js
<s> [webpack.Progress] 26% building 138/165 modules 27 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/jest-mock/build/index.js
<s> [webpack.Progress] 26% building 139/165 modules 26 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/jest-mock/build/index.js
<s> [webpack.Progress] 26% building 140/165 modules 25 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/jest-mock/build/index.js
<s> [webpack.Progress] 26% building 141/165 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/jest-mock/build/index.js
<s> [webpack.Progress] 27% building 142/165 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/jest-mock/build/index.js
<s> [webpack.Progress] 27% building 143/165 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/jest-mock/build/index.js
<s> [webpack.Progress] 27% building 144/165 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/jest-mock/build/index.js
<s> [webpack.Progress] 27% building 145/165 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/jest-mock/build/index.js
<s> [webpack.Progress] 27% building 146/165 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/jest-mock/build/index.js
<s> [webpack.Progress] 27% building 147/165 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/jest-mock/build/index.js
<s> [webpack.Progress] 27% building 148/165 modules 17 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/jest-mock/build/index.js
<s> [webpack.Progress] 27% building 149/165 modules 16 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/jest-mock/build/index.js
<s> [webpack.Progress] 27% building 149/166 modules 17 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.object.set-prototype-of.js
<s> [webpack.Progress] 27% building 149/167 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.object.get-prototype-of.js
<s> [webpack.Progress] 27% building 149/168 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.json.to-string-tag.js
<s> [webpack.Progress] 27% building 149/169 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.math.to-string-tag.js
<s> [webpack.Progress] 27% building 149/170 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.symbol.to-string-tag.js
<s> [webpack.Progress] 27% building 149/171 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.symbol.async-iterator.js
<s> [webpack.Progress] 28% building 150/171 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.symbol.async-iterator.js
<s> [webpack.Progress] 28% building 151/171 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.symbol.async-iterator.js
<s> [webpack.Progress] 28% building 152/171 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.symbol.async-iterator.js
<s> [webpack.Progress] 28% building 152/172 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js
<s> [webpack.Progress] 28% building 153/172 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js
<s> [webpack.Progress] 28% building 154/172 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js
<s> [webpack.Progress] 28% building 155/172 modules 17 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js
<s> [webpack.Progress] 28% building 156/172 modules 16 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js
<s> [webpack.Progress] 28% building 157/172 modules 15 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js
<s> [webpack.Progress] 28% building 158/172 modules 14 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js
<s> [webpack.Progress] 29% building 159/172 modules 13 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js
<s> [webpack.Progress] 29% building 159/173 modules 14 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addons/dist/esm/public_api.js
<s> [webpack.Progress] 29% building 159/174 modules 15 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/instrumenter/dist/esm/index.js
<s> [webpack.Progress] 29% building 159/175 modules 16 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/core-events/dist/esm/index.js
<s> [webpack.Progress] 29% building 160/175 modules 15 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/core-events/dist/esm/index.js
<s> [webpack.Progress] 29% building 161/175 modules 14 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/core-events/dist/esm/index.js
<s> [webpack.Progress] 29% building 162/175 modules 13 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/core-events/dist/esm/index.js
<s> [webpack.Progress] 29% building 163/175 modules 12 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/core-events/dist/esm/index.js
<s> [webpack.Progress] 29% building 163/176 modules 13 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.number.to-fixed.js
<s> [webpack.Progress] 29% building 163/177 modules 14 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.number.constructor.js
<s> [webpack.Progress] 29% building 163/178 modules 15 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-links/dist/esm/constants.js
<s> [webpack.Progress] 29% building 163/179 modules 16 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/constants.js
<s> [webpack.Progress] 29% building 164/179 modules 15 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/constants.js
<s> [webpack.Progress] 29% building 164/180 modules 16 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-property-is-enumerable.js
<s> [webpack.Progress] 29% building 165/180 modules 15 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-property-is-enumerable.js
<s> [webpack.Progress] 29% building 166/180 modules 14 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-property-is-enumerable.js
<s> [webpack.Progress] 30% building 167/180 modules 13 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-property-is-enumerable.js
<s> [webpack.Progress] 30% building 168/180 modules 12 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-property-is-enumerable.js
<s> [webpack.Progress] 30% building 169/180 modules 11 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-property-is-enumerable.js
<s> [webpack.Progress] 30% building 170/180 modules 10 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-property-is-enumerable.js
<s> [webpack.Progress] 30% building 171/180 modules 9 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-property-is-enumerable.js
<s> [webpack.Progress] 30% building 171/181 modules 10 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/Page.jsx
<s> [webpack.Progress] 30% building 171/182 modules 11 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/native-weak-map.js
<s> [webpack.Progress] 30% building 171/183 modules 12 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/shared-key.js
<s> [webpack.Progress] 30% building 171/184 modules 13 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/hidden-keys.js
<s> [webpack.Progress] 30% building 171/185 modules 14 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/Button.jsx
<s> [webpack.Progress] 30% building 171/186 modules 15 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/Header.jsx
<s> [webpack.Progress] 30% building 171/187 modules 16 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/file-loader/dist/cjs.js??ref--12!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/assets/stackalt.svg
<s> [webpack.Progress] 30% building 171/188 modules 17 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/file-loader/dist/cjs.js??ref--12!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/assets/repo.svg
<s> [webpack.Progress] 30% building 171/189 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/file-loader/dist/cjs.js??ref--12!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/assets/plugin.svg
<s> [webpack.Progress] 30% building 171/190 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/file-loader/dist/cjs.js??ref--12!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/assets/flow.svg
<s> [webpack.Progress] 30% building 171/191 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/file-loader/dist/cjs.js??ref--12!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/assets/direction.svg
<s> [webpack.Progress] 30% building 171/192 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/file-loader/dist/cjs.js??ref--12!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/assets/comments.svg
<s> [webpack.Progress] 30% building 171/193 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/file-loader/dist/cjs.js??ref--12!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/assets/colors.svg
<s> [webpack.Progress] 30% building 171/194 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/shared-store.js
<s> [webpack.Progress] 30% building 171/195 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/is-object.js
<s> [webpack.Progress] 30% building 172/195 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/is-object.js
<s> [webpack.Progress] 30% building 173/195 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/is-object.js
<s> [webpack.Progress] 30% building 174/195 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/is-object.js
<s> [webpack.Progress] 30% building 174/196 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/docs-tools/dist/esm/hasDocsOrControls.js
<s> [webpack.Progress] 30% building 174/197 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/docs-tools/dist/esm/shared.js
<s> [webpack.Progress] 30% building 174/198 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/classof-raw.js
<s> [webpack.Progress] 30% building 174/199 modules 25 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/array-species-constructor.js
<s> [webpack.Progress] 30% building 174/200 modules 26 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-measure/dist/esm/box-model/labels.js
<s> [webpack.Progress] 30% building 174/201 modules 27 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/engine-user-agent.js
<s> [webpack.Progress] 30% building 174/202 modules 28 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/is-callable.js
<s> [webpack.Progress] 31% building 175/202 modules 27 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/is-callable.js
<s> [webpack.Progress] 31% building 176/202 modules 26 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/is-callable.js
<s> [webpack.Progress] 31% building 176/203 modules 27 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/function-bind-native.js
<s> [webpack.Progress] 31% building 176/204 modules 28 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/to-primitive.js
<s> [webpack.Progress] 31% building 176/205 modules 29 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/array-includes.js
<s> [webpack.Progress] 31% building 176/206 modules 30 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/is-symbol.js
<s> [webpack.Progress] 31% building 176/207 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/a-callable.js
<s> [webpack.Progress] 31% building 177/207 modules 30 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/a-callable.js
<s> [webpack.Progress] 31% building 177/208 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/freezing.js
<s> [webpack.Progress] 31% building 177/209 modules 32 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/uid.js
<s> [webpack.Progress] 31% building 177/210 modules 33 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-is-extensible.js
<s> [webpack.Progress] 31% building 178/210 modules 32 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-is-extensible.js
<s> [webpack.Progress] 31% building 178/211 modules 33 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-get-own-property-names-external.js
<s> [webpack.Progress] 31% building 178/212 modules 34 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-get-own-property-names.js
<s> [webpack.Progress] 31% building 178/213 modules 35 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-assign.js
<s> [webpack.Progress] 31% building 178/214 modules 36 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/is-pure.js
<s> [webpack.Progress] 31% building 179/214 modules 35 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/is-pure.js
<s> [webpack.Progress] 31% building 179/215 modules 36 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/use-symbol-as-uid.js
<s> [webpack.Progress] 31% building 180/215 modules 35 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/use-symbol-as-uid.js
<s> [webpack.Progress] 31% building 180/216 modules 36 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/react/jsx-runtime.js
<s> [webpack.Progress] 31% building 180/217 modules 37 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/regexp-exec-abstract.js
<s> [webpack.Progress] 31% building 180/218 modules 38 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/get-method.js
<s> [webpack.Progress] 31% building 180/219 modules 39 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/function-name.js
<s> [webpack.Progress] 31% building 180/220 modules 40 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/react/dist/esm/client/preview/index.js
<s> [webpack.Progress] 31% building 180/221 modules 41 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/regexp-get-flags.js
<s> [webpack.Progress] 31% building 180/222 modules 42 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/to-string.js
<s> [webpack.Progress] 31% building 180/223 modules 43 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/define-built-in.js
<s> [webpack.Progress] 31% building 180/224 modules 44 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/advance-string-index.js
<s> [webpack.Progress] 31% building 180/225 modules 45 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/util-deprecate/browser.js
<s> [webpack.Progress] 31% building 181/225 modules 44 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/util-deprecate/browser.js
<s> [webpack.Progress] 31% building 182/225 modules 43 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/util-deprecate/browser.js
<s> [webpack.Progress] 31% building 183/225 modules 42 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/util-deprecate/browser.js
<s> [webpack.Progress] 32% building 184/225 modules 41 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/util-deprecate/browser.js
<s> [webpack.Progress] 32% building 185/225 modules 40 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/util-deprecate/browser.js
<s> [webpack.Progress] 32% building 186/225 modules 39 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/util-deprecate/browser.js
<s> [webpack.Progress] 32% building 187/225 modules 38 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/util-deprecate/browser.js
<s> [webpack.Progress] 32% building 188/225 modules 37 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/util-deprecate/browser.js
<s> [webpack.Progress] 32% building 189/225 modules 36 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/util-deprecate/browser.js
<s> [webpack.Progress] 32% building 190/225 modules 35 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/util-deprecate/browser.js
<s> [webpack.Progress] 32% building 190/226 modules 36 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/airbnb-js-shims/target/es2015.js
<s> [webpack.Progress] 32% building 191/226 modules 35 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/airbnb-js-shims/target/es2015.js
<s> [webpack.Progress] 33% building 192/226 modules 34 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/airbnb-js-shims/target/es2015.js
<s> [webpack.Progress] 33% building 192/227 modules 35 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-backgrounds/dist/esm/helpers/index.js
<s> [webpack.Progress] 33% building 192/228 modules 36 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/regexp-unsupported-ncg.js
<s> [webpack.Progress] 33% building 192/229 modules 37 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/store/dist/esm/index.js
<s> [webpack.Progress] 33% building 192/230 modules 38 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.map.js
<s> [webpack.Progress] 33% building 193/230 modules 37 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.map.js
<s> [webpack.Progress] 33% building 194/230 modules 36 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.map.js
<s> [webpack.Progress] 33% building 195/230 modules 35 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.map.js
<s> [webpack.Progress] 33% building 196/230 modules 34 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.map.js
<s> [webpack.Progress] 33% building 197/230 modules 33 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.map.js
<s> [webpack.Progress] 33% building 198/230 modules 32 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.map.js
<s> [webpack.Progress] 33% building 199/230 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.map.js
<s> [webpack.Progress] 34% building 200/230 modules 30 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.map.js
<s> [webpack.Progress] 34% building 201/230 modules 29 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.map.js
<s> [webpack.Progress] 34% building 202/230 modules 28 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.map.js
<s> [webpack.Progress] 34% building 203/230 modules 27 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.map.js
<s> [webpack.Progress] 34% building 204/230 modules 26 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.map.js
<s> [webpack.Progress] 34% building 204/231 modules 27 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.string.replace.js
<s> [webpack.Progress] 34% building 204/232 modules 28 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.string.starts-with.js
<s> [webpack.Progress] 34% building 204/233 modules 29 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-set-prototype-of.js
<s> [webpack.Progress] 34% building 205/233 modules 28 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-set-prototype-of.js
<s> [webpack.Progress] 34% building 205/234 modules 29 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.object.get-own-property-names.js
<s> [webpack.Progress] 34% building 205/235 modules 30 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/ts-dedent/esm/index.js
<s> [webpack.Progress] 34% building 206/235 modules 29 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/ts-dedent/esm/index.js
<s> [webpack.Progress] 34% building 206/236 modules 30 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/correct-prototype-getter.js
<s> [webpack.Progress] 34% building 207/236 modules 29 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/correct-prototype-getter.js
<s> [webpack.Progress] 34% building 207/237 modules 30 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/set-to-string-tag.js
<s> [webpack.Progress] 34% building 208/237 modules 29 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/set-to-string-tag.js
<s> [webpack.Progress] 34% building 208/238 modules 30 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-get-prototype-of.js
<s> [webpack.Progress] 35% building 209/238 modules 29 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-get-prototype-of.js
<s> [webpack.Progress] 35% building 209/239 modules 30 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.weak-map.js
<s> [webpack.Progress] 35% building 210/239 modules 29 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.weak-map.js
<s> [webpack.Progress] 35% building 211/239 modules 28 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.weak-map.js
<s> [webpack.Progress] 35% building 212/239 modules 27 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.weak-map.js
<s> [webpack.Progress] 35% building 212/240 modules 28 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.set.js
<s> [webpack.Progress] 35% building 213/240 modules 27 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.set.js
<s> [webpack.Progress] 35% building 214/240 modules 26 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.set.js
<s> [webpack.Progress] 35% building 215/240 modules 25 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.set.js
<s> [webpack.Progress] 35% building 216/240 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.set.js
<s> [webpack.Progress] 36% building 217/240 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.set.js
<s> [webpack.Progress] 36% building 217/241 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/react-dom/index.js
<s> [webpack.Progress] 36% building 217/242 modules 25 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/regexp-unsupported-dot-all.js
<s> [webpack.Progress] 36% building 217/243 modules 26 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addons/dist/esm/index.js
<s> [webpack.Progress] 36% building 218/243 modules 25 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addons/dist/esm/index.js
<s> [webpack.Progress] 36% building 219/243 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addons/dist/esm/index.js
<s> [webpack.Progress] 36% building 220/243 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addons/dist/esm/index.js
<s> [webpack.Progress] 36% building 221/243 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addons/dist/esm/index.js
<s> [webpack.Progress] 36% building 221/244 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addons/dist/esm/hooks.js
<s> [webpack.Progress] 36% building 221/245 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/instrumenter/dist/esm/instrumenter.js
<s> [webpack.Progress] 36% building 222/245 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/instrumenter/dist/esm/instrumenter.js
<s> [webpack.Progress] 36% building 223/245 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/instrumenter/dist/esm/instrumenter.js
<s> [webpack.Progress] 36% building 223/246 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/instrumenter/dist/esm/types.js
<s> [webpack.Progress] 36% building 223/247 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addons/dist/esm/storybook-channel-mock.js
<s> [webpack.Progress] 36% building 223/248 modules 25 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addons/dist/esm/types.js
<s> [webpack.Progress] 36% building 223/249 modules 26 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/string-trim.js
<s> [webpack.Progress] 36% building 223/250 modules 27 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/string-repeat.js
<s> [webpack.Progress] 36% building 223/251 modules 28 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/this-number-value.js
<s> [webpack.Progress] 36% building 223/252 modules 29 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.array.fill.js
<s> [webpack.Progress] 36% building 223/253 modules 30 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-is-prototype-of.js
<s> [webpack.Progress] 36% building 223/254 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/inherit-if-required.js
<s> [webpack.Progress] 36% building 224/254 modules 30 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/inherit-if-required.js
<s> [webpack.Progress] 37% building 225/254 modules 29 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/inherit-if-required.js
<s> [webpack.Progress] 37% building 226/254 modules 28 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/inherit-if-required.js
<s> [webpack.Progress] 37% building 226/255 modules 29 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/to-integer-or-infinity.js
<s> [webpack.Progress] 37% building 227/255 modules 28 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/to-integer-or-infinity.js
<s> [webpack.Progress] 37% building 228/255 modules 27 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/to-integer-or-infinity.js
<s> [webpack.Progress] 37% building 229/255 modules 26 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/to-integer-or-infinity.js
<s> [webpack.Progress] 37% building 230/255 modules 25 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/to-integer-or-infinity.js
<s> [webpack.Progress] 37% building 231/255 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/to-integer-or-infinity.js
<s> [webpack.Progress] 37% building 232/255 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/to-integer-or-infinity.js
<s> [webpack.Progress] 37% building 233/255 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/to-integer-or-infinity.js
<s> [webpack.Progress] 38% building 234/255 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/to-integer-or-infinity.js
<s> [webpack.Progress] 38% building 235/255 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/to-integer-or-infinity.js
<s> [webpack.Progress] 38% building 236/255 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/to-integer-or-infinity.js
<s> [webpack.Progress] 38% building 237/255 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/to-integer-or-infinity.js
<s> [webpack.Progress] 38% building 237/256 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/inspect-source.js
<s> [webpack.Progress] 38% building 237/257 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/shared.js
<s> [webpack.Progress] 38% building 237/258 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addons/dist/esm/make-decorator.js
<s> [webpack.Progress] 38% building 238/258 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addons/dist/esm/make-decorator.js
<s> [webpack.Progress] 38% building 238/259 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/set-species.js
<s> [webpack.Progress] 38% building 238/260 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/proxy-accessor.js
<s> [webpack.Progress] 38% building 238/261 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/regexp-sticky-helpers.js
<s> [webpack.Progress] 38% building 238/262 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/is-regexp.js
<s> [webpack.Progress] 38% building 239/262 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/is-regexp.js
<s> [webpack.Progress] 38% building 240/262 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/is-regexp.js
<s> [webpack.Progress] 38% building 240/263 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/to-length.js
<s> [webpack.Progress] 38% building 240/264 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/define-global-property.js
<s> [webpack.Progress] 38% building 241/264 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/define-global-property.js
<s> [webpack.Progress] 39% building 242/264 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/define-global-property.js
<s> [webpack.Progress] 39% building 243/264 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/define-global-property.js
<s> [webpack.Progress] 39% building 243/265 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/fix-regexp-well-known-symbol-logic.js
<s> [webpack.Progress] 39% building 243/266 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/react/cjs/react-jsx-runtime.production.min.js
<s> [webpack.Progress] 39% building 243/267 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/same-value.js
<s> [webpack.Progress] 39% building 244/267 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/same-value.js
<s> [webpack.Progress] 39% building 245/267 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/same-value.js
<s> [webpack.Progress] 39% building 245/268 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/es5-shim/es5-sham.js
<s> [webpack.Progress] 39% building 245/269 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/is-constructor.js
<s> [webpack.Progress] 39% building 245/270 modules 25 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/is-array.js
<s> [webpack.Progress] 39% building 246/270 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/is-array.js
<s> [webpack.Progress] 39% building 247/270 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/is-array.js
<s> [webpack.Progress] 39% building 247/271 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/mdx.js
<s> [webpack.Progress] 39% building 248/271 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/mdx.js
<s> [webpack.Progress] 39% building 248/272 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/types.js
<s> [webpack.Progress] 39% building 249/272 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/types.js
<s> [webpack.Progress] 40% building 250/272 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/types.js
<s> [webpack.Progress] 40% building 250/273 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/try-to-string.js
<s> [webpack.Progress] 40% building 251/273 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/try-to-string.js
<s> [webpack.Progress] 40% building 252/273 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/try-to-string.js
<s> [webpack.Progress] 40% building 252/274 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/ordinary-to-primitive.js
<s> [webpack.Progress] 40% building 253/274 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/ordinary-to-primitive.js
<s> [webpack.Progress] 40% building 253/275 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/length-of-array-like.js
<s> [webpack.Progress] 40% building 254/275 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/length-of-array-like.js
<s> [webpack.Progress] 40% building 254/276 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/to-absolute-index.js
<s> [webpack.Progress] 40% building 254/277 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/Wrapper.js
<s> [webpack.Progress] 40% building 254/278 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/Title.js
<s> [webpack.Progress] 40% building 254/279 modules 25 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/Subtitle.js
<s> [webpack.Progress] 40% building 254/280 modules 26 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/Subheading.js
<s> [webpack.Progress] 40% building 254/281 modules 27 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/array-buffer-non-extensible.js
<s> [webpack.Progress] 40% building 254/282 modules 28 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/Story.js
<s> [webpack.Progress] 40% building 254/283 modules 29 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/Stories.js
<s> [webpack.Progress] 40% building 254/284 modules 30 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/array-slice-simple.js
<s> [webpack.Progress] 40% building 254/285 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/SourceContainer.js
<s> [webpack.Progress] 40% building 254/286 modules 32 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/Source.js
<s> [webpack.Progress] 40% building 254/287 modules 33 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/Props.js
<s> [webpack.Progress] 40% building 255/287 modules 32 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/Props.js
<s> [webpack.Progress] 40% building 255/288 modules 33 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/Primary.js
<s> [webpack.Progress] 40% building 255/289 modules 34 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/Preview.js
<s> [webpack.Progress] 40% building 255/290 modules 35 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/Meta.js
<s> [webpack.Progress] 40% building 255/291 modules 36 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/Heading.js
<s> [webpack.Progress] 40% building 255/292 modules 37 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/DocsStory.js
<s> [webpack.Progress] 40% building 255/293 modules 38 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/DocsContainer.js
<s> [webpack.Progress] 40% building 255/294 modules 39 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/DocsPage.js
<s> [webpack.Progress] 40% building 255/295 modules 40 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/react/dist/esm/client/preview/globals.js
<s> [webpack.Progress] 40% building 255/296 modules 41 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/regexp-flags.js
<s> [webpack.Progress] 40% building 255/297 modules 42 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/qs/lib/index.js
<s> [webpack.Progress] 40% building 255/298 modules 43 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/make-built-in.js
<s> [webpack.Progress] 40% building 255/299 modules 44 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/react/index.js
<s> [webpack.Progress] 40% building 256/299 modules 43 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/react/index.js
<s> [webpack.Progress] 40% building 257/299 modules 42 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/react/index.js
<s> [webpack.Progress] 40% building 258/299 modules 41 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/react/index.js
<s> [webpack.Progress] 41% building 259/299 modules 40 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/react/index.js
<s> [webpack.Progress] 41% building 260/299 modules 39 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/react/index.js
<s> [webpack.Progress] 41% building 261/299 modules 38 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/react/index.js
<s> [webpack.Progress] 41% building 262/299 modules 37 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/react/index.js
<s> [webpack.Progress] 41% building 263/299 modules 36 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/react/index.js
<s> [webpack.Progress] 41% building 264/299 modules 35 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/react/index.js
<s> [webpack.Progress] 41% building 264/300 modules 36 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.array.find.js
<s> [webpack.Progress] 41% building 264/301 modules 37 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.object.values.js
<s> [webpack.Progress] 41% building 264/302 modules 38 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.array.index-of.js
<s> [webpack.Progress] 41% building 264/303 modules 39 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.string.includes.js
<s> [webpack.Progress] 41% building 264/304 modules 40 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/airbnb-js-shims/target/es2016.js
<s> [webpack.Progress] 41% building 264/305 modules 41 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.array.sort.js
<s> [webpack.Progress] 41% building 264/306 modules 42 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/DocsContext.js
<s> [webpack.Progress] 41% building 264/307 modules 43 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/Description.js
<s> [webpack.Progress] 41% building 264/308 modules 44 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.array.includes.js
<s> [webpack.Progress] 41% building 265/308 modules 43 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.array.includes.js
<s> [webpack.Progress] 41% building 266/308 modules 42 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.array.includes.js
<s> [webpack.Progress] 42% building 267/308 modules 41 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.array.includes.js
<s> [webpack.Progress] 42% building 267/309 modules 42 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/store/dist/esm/StoryStore.js
<s> [webpack.Progress] 42% building 267/310 modules 43 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/react-dom/cjs/react-dom.production.min.js
<s> [webpack.Progress] 42% building 268/310 modules 42 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/react-dom/cjs/react-dom.production.min.js
<s> [webpack.Progress] 42% building 268/311 modules 43 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.map.constructor.js
<s> [webpack.Progress] 42% building 269/311 modules 42 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.map.constructor.js
<s> [webpack.Progress] 42% building 270/311 modules 41 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.map.constructor.js
<s> [webpack.Progress] 42% building 271/311 modules 40 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.map.constructor.js
<s> [webpack.Progress] 42% building 272/311 modules 39 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.map.constructor.js
<s> [webpack.Progress] 42% building 273/311 modules 38 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.map.constructor.js
<s> [webpack.Progress] 42% building 274/311 modules 37 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.map.constructor.js
<s> [webpack.Progress] 43% building 275/311 modules 36 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.map.constructor.js
<s> [webpack.Progress] 43% building 275/312 modules 37 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/correct-is-regexp-logic.js
<s> [webpack.Progress] 43% building 275/313 modules 38 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/function-apply.js
<s> [webpack.Progress] 43% building 275/314 modules 39 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/get-substitution.js
<s> [webpack.Progress] 43% building 275/315 modules 40 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/a-possible-prototype.js
<s> [webpack.Progress] 43% building 276/315 modules 39 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/a-possible-prototype.js
<s> [webpack.Progress] 43% building 277/315 modules 38 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/a-possible-prototype.js
<s> [webpack.Progress] 43% building 278/315 modules 37 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/a-possible-prototype.js
<s> [webpack.Progress] 43% building 279/315 modules 36 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/a-possible-prototype.js
<s> [webpack.Progress] 43% building 280/315 modules 35 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/a-possible-prototype.js
<s> [webpack.Progress] 43% building 280/316 modules 36 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/not-a-regexp.js
<s> [webpack.Progress] 43% building 281/316 modules 35 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/not-a-regexp.js
<s> [webpack.Progress] 43% building 282/316 modules 34 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/not-a-regexp.js
<s> [webpack.Progress] 43% building 283/316 modules 33 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/not-a-regexp.js
<s> [webpack.Progress] 44% building 284/316 modules 32 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/not-a-regexp.js
<s> [webpack.Progress] 44% building 285/316 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/not-a-regexp.js
<s> [webpack.Progress] 44% building 285/317 modules 32 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/store/dist/esm/sortStories.js
<s> [webpack.Progress] 44% building 285/318 modules 33 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.weak-map.constructor.js
<s> [webpack.Progress] 44% building 285/319 modules 34 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/preview/index.js
<s> [webpack.Progress] 44% building 285/320 modules 35 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/models/index.js
<s> [webpack.Progress] 44% building 286/320 modules 34 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/models/index.js
<s> [webpack.Progress] 44% building 287/320 modules 33 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/models/index.js
<s> [webpack.Progress] 44% building 288/320 modules 32 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/models/index.js
<s> [webpack.Progress] 44% building 289/320 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/models/index.js
<s> [webpack.Progress] 44% building 290/320 modules 30 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/models/index.js
<s> [webpack.Progress] 44% building 290/321 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.set.constructor.js
<s> [webpack.Progress] 44% building 291/321 modules 30 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.set.constructor.js
<s> [webpack.Progress] 44% building 291/322 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.array.find-index.js
<s> [webpack.Progress] 44% building 291/323 modules 32 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.date.to-primitive.js
<s> [webpack.Progress] 45% building 292/323 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.date.to-primitive.js
<s> [webpack.Progress] 45% building 292/324 modules 32 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.symbol.to-primitive.js
<s> [webpack.Progress] 45% building 293/324 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.symbol.to-primitive.js
<s> [webpack.Progress] 45% building 293/325 modules 32 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/csf/dist/index.js
<s> [webpack.Progress] 45% building 294/325 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/csf/dist/index.js
<s> [webpack.Progress] 45% building 294/326 modules 32 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/store/dist/esm/autoTitle.js
<s> [webpack.Progress] 45% building 294/327 modules 33 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/full/symbol/index.js
<s> [webpack.Progress] 45% building 295/327 modules 32 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/full/symbol/index.js
<s> [webpack.Progress] 45% building 296/327 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/full/symbol/index.js
<s> [webpack.Progress] 45% building 297/327 modules 30 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/full/symbol/index.js
<s> [webpack.Progress] 45% building 298/327 modules 29 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/full/symbol/index.js
<s> [webpack.Progress] 45% building 299/327 modules 28 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/full/symbol/index.js
<s> [webpack.Progress] 45% building 299/328 modules 29 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/docs-tools/dist/esm/argTypes/index.js
<s> [webpack.Progress] 45% building 299/329 modules 30 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.number.is-integer.js
<s> [webpack.Progress] 46% building 300/329 modules 29 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.number.is-integer.js
<s> [webpack.Progress] 46% building 301/329 modules 28 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.number.is-integer.js
<s> [webpack.Progress] 46% building 301/330 modules 29 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/whitespaces.js
<s> [webpack.Progress] 46% building 302/330 modules 28 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/whitespaces.js
<s> [webpack.Progress] 46% building 303/330 modules 27 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/whitespaces.js
<s> [webpack.Progress] 46% building 304/330 modules 26 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/whitespaces.js
<s> [webpack.Progress] 46% building 304/331 modules 27 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.string.split.js
<s> [webpack.Progress] 46% building 305/331 modules 26 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.string.split.js
<s> [webpack.Progress] 46% building 305/332 modules 27 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/add-to-unscopables.js
<s> [webpack.Progress] 46% building 305/333 modules 28 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/array-fill.js
<s> [webpack.Progress] 46% building 306/333 modules 27 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/array-fill.js
<s> [webpack.Progress] 46% building 307/333 modules 26 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/array-fill.js
<s> [webpack.Progress] 46% building 307/334 modules 27 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/testing-library/dist/esm/index.js
<s> [webpack.Progress] 46% building 308/334 modules 26 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/testing-library/dist/esm/index.js
<s> [webpack.Progress] 46% building 308/335 modules 27 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/jest/dist/esm/index.js
<s> [webpack.Progress] 47% building 309/335 modules 26 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/jest/dist/esm/index.js
<s> [webpack.Progress] 47% building 309/336 modules 27 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/es5-shim/es5-shim.js
<s> [webpack.Progress] 47% building 309/337 modules 28 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/math-trunc.js
<s> [webpack.Progress] 47% building 310/337 modules 27 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/math-trunc.js
<s> [webpack.Progress] 47% building 311/337 modules 26 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/math-trunc.js
<s> [webpack.Progress] 47% building 311/338 modules 27 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/web.url-search-params.js
<s> [webpack.Progress] 47% building 311/339 modules 28 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/web.url.js
<s> [webpack.Progress] 47% building 311/340 modules 29 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/function.prototype.name/shim.js
<s> [webpack.Progress] 47% building 312/340 modules 28 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/function.prototype.name/shim.js
<s> [webpack.Progress] 47% building 313/340 modules 27 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/function.prototype.name/shim.js
<s> [webpack.Progress] 47% building 314/340 modules 26 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/function.prototype.name/shim.js
<s> [webpack.Progress] 47% building 315/340 modules 25 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/function.prototype.name/shim.js
<s> [webpack.Progress] 47% building 316/340 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/function.prototype.name/shim.js
<s> [webpack.Progress] 48% building 317/340 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/function.prototype.name/shim.js
<s> [webpack.Progress] 48% building 318/340 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/function.prototype.name/shim.js
<s> [webpack.Progress] 48% building 319/340 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/function.prototype.name/shim.js
<s> [webpack.Progress] 48% building 320/340 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/function.prototype.name/shim.js
<s> [webpack.Progress] 48% building 321/340 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/function.prototype.name/shim.js
<s> [webpack.Progress] 48% building 321/341 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/style-loader/dist/cjs.js!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/css-loader/dist/cjs.js??ref--11-1!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/postcss-loader/dist/cjs.js??ref--11-2!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/page.css
<s> [webpack.Progress] 48% building 322/341 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/function.prototype.name/shim.js
<s> [webpack.Progress] 48% building 322/342 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/style-loader/dist/cjs.js!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/css-loader/dist/cjs.js??ref--11-1!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/postcss-loader/dist/cjs.js??ref--11-2!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/button.css
<s> [webpack.Progress] 48% building 323/342 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/function.prototype.name/shim.js
<s> [webpack.Progress] 48% building 323/343 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/style-loader/dist/cjs.js!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/css-loader/dist/cjs.js??ref--11-1!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/postcss-loader/dist/cjs.js??ref--11-2!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/header.css
<s> [webpack.Progress] 48% building 324/343 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/function.prototype.name/shim.js
<s> [webpack.Progress] 48% building 324/344 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/react/cjs/react.production.min.js
<s> [webpack.Progress] 49% building 325/344 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/react/cjs/react.production.min.js
<s> [webpack.Progress] 49% building 325/345 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/css-loader/dist/cjs.js??ref--11-1!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/postcss-loader/dist/cjs.js??ref--11-2!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/header.css
<s> [webpack.Progress] 49% building 326/345 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/css-loader/dist/cjs.js??ref--11-1!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/postcss-loader/dist/cjs.js??ref--11-2!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/header.css
<s> [webpack.Progress] 49% building 327/345 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/css-loader/dist/cjs.js??ref--11-1!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/postcss-loader/dist/cjs.js??ref--11-2!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/header.css
<s> [webpack.Progress] 49% building 328/345 modules 17 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/css-loader/dist/cjs.js??ref--11-1!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/postcss-loader/dist/cjs.js??ref--11-2!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/header.css
<s> [webpack.Progress] 49% building 328/346 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/store/dist/esm/args.js
<s> [webpack.Progress] 49% building 328/347 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/store/dist/esm/decorators.js
<s> [webpack.Progress] 49% building 329/347 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/store/dist/esm/decorators.js
<s> [webpack.Progress] 49% building 330/347 modules 17 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/store/dist/esm/decorators.js
<s> [webpack.Progress] 49% building 330/348 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/store/dist/esm/hooks.js
<s> [webpack.Progress] 49% building 330/349 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/store/dist/esm/inferControls.js
<s> [webpack.Progress] 49% building 330/350 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/store/dist/esm/filterArgTypes.js
<s> [webpack.Progress] 49% building 330/351 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/store/dist/esm/types.js
<s> [webpack.Progress] 49% building 330/352 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/store/dist/esm/parameters.js
<s> [webpack.Progress] 49% building 330/353 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/Canvas.js
<s> [webpack.Progress] 49% building 330/354 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/ArgsTable.js
<s> [webpack.Progress] 49% building 330/355 modules 25 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/Anchor.js
<s> [webpack.Progress] 49% building 331/355 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/Anchor.js
<s> [webpack.Progress] 49% building 331/356 modules 25 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/components/dist/esm/index.js
<s> [webpack.Progress] 49% building 331/357 modules 26 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/engine-is-browser.js
<s> [webpack.Progress] 49% building 331/358 modules 27 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/promise-native-constructor.js
<s> [webpack.Progress] 49% building 332/358 modules 26 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/promise-native-constructor.js
<s> [webpack.Progress] 49% building 333/358 modules 25 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/promise-native-constructor.js
<s> [webpack.Progress] 50% building 334/358 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/promise-native-constructor.js
<s> [webpack.Progress] 50% building 334/359 modules 25 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/css-loader/dist/cjs.js??ref--11-1!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/postcss-loader/dist/cjs.js??ref--11-2!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/button.css
<s> [webpack.Progress] 50% building 335/359 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/css-loader/dist/cjs.js??ref--11-1!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/postcss-loader/dist/cjs.js??ref--11-2!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/button.css
<s> [webpack.Progress] 50% building 336/359 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/css-loader/dist/cjs.js??ref--11-1!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/postcss-loader/dist/cjs.js??ref--11-2!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/button.css
<s> [webpack.Progress] 50% building 336/360 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/css-loader/dist/cjs.js??ref--11-1!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/postcss-loader/dist/cjs.js??ref--11-2!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/page.css
<s> [webpack.Progress] 50% building 337/360 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/css-loader/dist/cjs.js??ref--11-1!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/postcss-loader/dist/cjs.js??ref--11-2!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/page.css
<s> [webpack.Progress] 50% building 337/361 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/shared.js
<s> [webpack.Progress] 50% building 338/361 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/shared.js
<s> [webpack.Progress] 50% building 339/361 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/shared.js
<s> [webpack.Progress] 50% building 340/361 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/shared.js
<s> [webpack.Progress] 50% building 340/362 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/synchronous-promise/index.js
<s> [webpack.Progress] 50% building 341/362 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/synchronous-promise/index.js
<s> [webpack.Progress] 51% building 342/362 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/synchronous-promise/index.js
<s> [webpack.Progress] 51% building 342/363 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/useStory.js
<s> [webpack.Progress] 51% building 342/364 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/enhanceSource.js
<s> [webpack.Progress] 51% building 343/364 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/enhanceSource.js
<s> [webpack.Progress] 51% building 343/365 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/blocks/utils.js
<s> [webpack.Progress] 51% building 343/366 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/qs/lib/stringify.js
<s> [webpack.Progress] 51% building 344/366 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/qs/lib/stringify.js
<s> [webpack.Progress] 51% building 345/366 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/qs/lib/stringify.js
<s> [webpack.Progress] 51% building 346/366 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/qs/lib/stringify.js
<s> [webpack.Progress] 51% building 347/366 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/qs/lib/stringify.js
<s> [webpack.Progress] 51% building 348/366 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/qs/lib/stringify.js
<s> [webpack.Progress] 51% building 348/367 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/qs/lib/formats.js
<s> [webpack.Progress] 51% building 349/367 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/qs/lib/formats.js
<s> [webpack.Progress] 52% building 350/367 modules 17 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/qs/lib/formats.js
<s> [webpack.Progress] 52% building 351/367 modules 16 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/qs/lib/formats.js
<s> [webpack.Progress] 52% building 351/368 modules 17 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/qs/lib/parse.js
<s> [webpack.Progress] 52% building 352/368 modules 16 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/qs/lib/parse.js
<s> [webpack.Progress] 52% building 352/369 modules 17 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/engine-webkit-version.js
<s> [webpack.Progress] 52% building 352/370 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/engine-is-ie-or-edge.js
<s> [webpack.Progress] 52% building 352/371 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/engine-ff-version.js
<s> [webpack.Progress] 52% building 352/372 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/array-sort.js
<s> [webpack.Progress] 52% building 352/373 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/airbnb-js-shims/target/es2017.js
<s> [webpack.Progress] 52% building 353/373 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/airbnb-js-shims/target/es2017.js
<s> [webpack.Progress] 52% building 354/373 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/airbnb-js-shims/target/es2017.js
<s> [webpack.Progress] 52% building 355/373 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/airbnb-js-shims/target/es2017.js
<s> [webpack.Progress] 52% building 356/373 modules 17 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/airbnb-js-shims/target/es2017.js
<s> [webpack.Progress] 52% building 356/374 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-logger/dist/esm/index.js
<s> [webpack.Progress] 52% building 357/374 modules 17 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-logger/dist/esm/index.js
<s> [webpack.Progress] 52% building 358/374 modules 16 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/client-logger/dist/esm/index.js
<s> [webpack.Progress] 52% building 358/375 modules 17 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/collection.js
<s> [webpack.Progress] 52% building 358/376 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/collection-strong.js
<s> [webpack.Progress] 53% building 359/376 modules 17 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/collection-strong.js
<s> [webpack.Progress] 53% building 360/376 modules 16 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/collection-strong.js
<s> [webpack.Progress] 53% building 360/377 modules 17 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/store/dist/esm/GlobalsStore.js
<s> [webpack.Progress] 53% building 360/378 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/store/dist/esm/ArgsStore.js
<s> [webpack.Progress] 53% building 360/379 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/store/dist/esm/StoryIndexStore.js
<s> [webpack.Progress] 53% building 361/379 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/store/dist/esm/StoryIndexStore.js
<s> [webpack.Progress] 53% building 361/380 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/preview/action.js
<s> [webpack.Progress] 53% building 361/381 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/collection-weak.js
<s> [webpack.Progress] 53% building 361/382 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/models/ActionDisplay.js
<s> [webpack.Progress] 53% building 361/383 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/models/HandlerFunction.js
<s> [webpack.Progress] 53% building 361/384 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/models/DecoratorFunction.js
<s> [webpack.Progress] 53% building 362/384 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/models/DecoratorFunction.js
<s> [webpack.Progress] 53% building 362/385 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js
<s> [webpack.Progress] 53% building 363/385 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js
<s> [webpack.Progress] 53% building 364/385 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js
<s> [webpack.Progress] 53% building 364/386 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/date-to-primitive.js
<s> [webpack.Progress] 53% building 364/387 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/symbol-define-to-primitive.js
<s> [webpack.Progress] 53% building 365/387 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/symbol-define-to-primitive.js
<s> [webpack.Progress] 53% building 365/388 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/esnext.symbol.replace-all.js
<s> [webpack.Progress] 53% building 366/388 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/esnext.symbol.replace-all.js
<s> [webpack.Progress] 53% building 366/389 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/esnext.symbol.pattern-match.js
<s> [webpack.Progress] 53% building 366/390 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/esnext.symbol.observable.js
<s> [webpack.Progress] 53% building 366/391 modules 25 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/esnext.symbol.metadata.js
<s> [webpack.Progress] 53% building 366/392 modules 26 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/esnext.symbol.matcher.js
<s> [webpack.Progress] 53% building 366/393 modules 27 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/esnext.symbol.dispose.js
<s> [webpack.Progress] 53% building 366/394 modules 28 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/esnext.symbol.async-dispose.js
<s> [webpack.Progress] 53% building 366/395 modules 29 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/components/dist/esm/index-3ae04fda.js
<s> [webpack.Progress] 53% building 366/396 modules 30 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/docs-tools/dist/esm/argTypes/enhanceArgTypes.js
<s> [webpack.Progress] 53% building 366/397 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/docs-tools/dist/esm/argTypes/types.js
<s> [webpack.Progress] 53% building 366/398 modules 32 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/docs-tools/dist/esm/argTypes/utils.js
<s> [webpack.Progress] 53% building 366/399 modules 33 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/csf/dist/story.js
<s> [webpack.Progress] 53% building 366/400 modules 34 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/docs-tools/dist/esm/argTypes/jsdocParser.js
<s> [webpack.Progress] 53% building 366/401 modules 35 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/csf/dist/includeConditionalArg.js
<s> [webpack.Progress] 53% building 366/402 modules 36 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/is-integral-number.js
<s> [webpack.Progress] 54% building 367/402 modules 35 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/is-integral-number.js
<s> [webpack.Progress] 54% building 367/403 modules 36 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/file-loader/dist/cjs.js??ref--12!/Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/src/stories/assets/code-brackets.svg
<s> [webpack.Progress] 54% building 367/404 modules 37 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/species-constructor.js
<s> [webpack.Progress] 54% building 368/404 modules 36 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/species-constructor.js
<s> [webpack.Progress] 54% building 369/404 modules 35 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/species-constructor.js
<s> [webpack.Progress] 54% building 369/405 modules 36 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-create.js
<s> [webpack.Progress] 54% building 370/405 modules 35 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-create.js
<s> [webpack.Progress] 54% building 371/405 modules 34 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-create.js
<s> [webpack.Progress] 54% building 372/405 modules 33 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-create.js
<s> [webpack.Progress] 54% building 373/405 modules 32 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-create.js
<s> [webpack.Progress] 54% building 374/405 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/object-create.js
<s> [webpack.Progress] 54% building 374/406 modules 32 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.string.trim.js
<s> [webpack.Progress] 54% building 375/406 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.string.trim.js
<s> [webpack.Progress] 54% building 375/407 modules 32 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/array-includes/shim.js
<s> [webpack.Progress] 54% building 375/408 modules 33 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/web.url-search-params.constructor.js
<s> [webpack.Progress] 54% building 375/409 modules 34 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/web.url.constructor.js
<s> [webpack.Progress] 55% building 376/409 modules 33 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/web.url.constructor.js
<s> [webpack.Progress] 55% building 377/409 modules 32 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/web.url.constructor.js
<s> [webpack.Progress] 55% building 378/409 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/web.url.constructor.js
<s> [webpack.Progress] 55% building 379/409 modules 30 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/web.url.constructor.js
<s> [webpack.Progress] 55% building 379/410 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/function.prototype.name/polyfill.js
<s> [webpack.Progress] 55% building 380/410 modules 30 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/function.prototype.name/polyfill.js
<s> [webpack.Progress] 55% building 381/410 modules 29 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/function.prototype.name/polyfill.js
<s> [webpack.Progress] 55% building 382/410 modules 28 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/function.prototype.name/polyfill.js
<s> [webpack.Progress] 55% building 383/410 modules 27 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/function.prototype.name/polyfill.js
<s> [webpack.Progress] 56% building 384/410 modules 26 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/function.prototype.name/polyfill.js
<s> [webpack.Progress] 56% building 385/410 modules 25 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/function.prototype.name/polyfill.js
<s> [webpack.Progress] 56% building 385/411 modules 26 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/models/ActionsMap.js
<s> [webpack.Progress] 56% building 386/411 modules 25 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/models/ActionsMap.js
<s> [webpack.Progress] 56% building 386/412 modules 26 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/css-loader/dist/runtime/api.js
<s> [webpack.Progress] 56% building 387/412 modules 25 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/css-loader/dist/runtime/api.js
<s> [webpack.Progress] 56% building 388/412 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/css-loader/dist/runtime/api.js
<s> [webpack.Progress] 56% building 388/413 modules 25 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/models/ActionOptions.js
<s> [webpack.Progress] 56% building 389/413 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/models/ActionOptions.js
<s> [webpack.Progress] 56% building 390/413 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/models/ActionOptions.js
<s> [webpack.Progress] 56% building 391/413 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/models/ActionOptions.js
<s> [webpack.Progress] 57% building 392/413 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/models/ActionOptions.js
<s> [webpack.Progress] 57% building 392/414 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/lodash/startCase.js
<s> [webpack.Progress] 57% building 392/415 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/lodash/isPlainObject.js
<s> [webpack.Progress] 57% building 392/416 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/lodash/pickBy.js
<s> [webpack.Progress] 57% building 392/417 modules 25 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/lodash/mapValues.js
<s> [webpack.Progress] 57% building 393/417 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/lodash/mapValues.js
<s> [webpack.Progress] 57% building 394/417 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/lodash/mapValues.js
<s> [webpack.Progress] 57% building 394/418 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/define-built-ins.js
<s> [webpack.Progress] 57% building 395/418 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/define-built-ins.js
<s> [webpack.Progress] 57% building 395/419 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/models/ActionsFunction.js
<s> [webpack.Progress] 57% building 395/420 modules 25 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/preview/decorateAction.js
<s> [webpack.Progress] 57% building 395/421 modules 26 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/preview/withActions.js
<s> [webpack.Progress] 57% building 396/421 modules 25 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/preview/withActions.js
<s> [webpack.Progress] 57% building 397/421 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/preview/withActions.js
<s> [webpack.Progress] 57% building 398/421 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/preview/withActions.js
<s> [webpack.Progress] 57% building 398/422 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/preview/configureActions.js
<s> [webpack.Progress] 57% building 399/422 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/preview/configureActions.js
<s> [webpack.Progress] 57% building 400/422 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/preview/configureActions.js
<s> [webpack.Progress] 58% building 401/422 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/preview/configureActions.js
<s> [webpack.Progress] 58% building 401/423 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/preview/actions.js
<s> [webpack.Progress] 58% building 402/423 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-actions/dist/esm/preview/actions.js
<s> [webpack.Progress] 58% building 402/424 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/store/dist/esm/storySort.js
<s> [webpack.Progress] 58% building 403/424 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/store/dist/esm/storySort.js
<s> [webpack.Progress] 58% building 404/424 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/store/dist/esm/storySort.js
<s> [webpack.Progress] 58% building 404/425 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/lodash/pick.js
<s> [webpack.Progress] 58% building 405/425 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/lodash/pick.js
<s> [webpack.Progress] 58% building 406/425 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/lodash/pick.js
<s> [webpack.Progress] 58% building 407/425 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/lodash/pick.js
<s> [webpack.Progress] 58% building 408/425 modules 17 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/lodash/pick.js
<s> [webpack.Progress] 59% building 409/425 modules 16 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/lodash/pick.js
<s> [webpack.Progress] 59% building 410/425 modules 15 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/lodash/pick.js
<s> [webpack.Progress] 59% building 410/426 modules 16 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/well-known-symbol-wrapped.js
<s> [webpack.Progress] 59% building 410/427 modules 17 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/es6-shim/es6-shim.js
<s> [webpack.Progress] 59% building 410/428 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/prop-types/index.js
<s> [webpack.Progress] 59% building 411/428 modules 17 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/prop-types/index.js
<s> [webpack.Progress] 59% building 411/429 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/core/dist/esm/index.js
<s> [webpack.Progress] 59% building 412/429 modules 17 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/core/dist/esm/index.js
<s> [webpack.Progress] 59% building 412/430 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@testing-library/jest-dom/matchers.js
<s> [webpack.Progress] 59% building 412/431 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/qs/lib/utils.js
<s> [webpack.Progress] 59% building 412/432 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/queue.js
<s> [webpack.Progress] 59% building 413/432 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/queue.js
<s> [webpack.Progress] 59% building 413/433 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/perform.js
<s> [webpack.Progress] 59% building 413/434 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/host-report-errors.js
<s> [webpack.Progress] 59% building 413/435 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/microtask.js
<s> [webpack.Progress] 59% building 413/436 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/task.js
<s> [webpack.Progress] 59% building 414/436 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/task.js
<s> [webpack.Progress] 59% building 415/436 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/task.js
<s> [webpack.Progress] 59% building 416/436 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/task.js
<s> [webpack.Progress] 60% building 417/436 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/task.js
<s> [webpack.Progress] 60% building 418/436 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/task.js
<s> [webpack.Progress] 60% building 419/436 modules 17 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/task.js
<s> [webpack.Progress] 60% building 420/436 modules 16 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/task.js
<s> [webpack.Progress] 60% building 421/436 modules 15 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/task.js
<s> [webpack.Progress] 60% building 421/437 modules 16 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/components/dist/esm/Color-01c31ae2.js
<s> [webpack.Progress] 60% building 421/438 modules 17 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/components/dist/esm/WithTooltip-2fc4c925.js
<s> [webpack.Progress] 60% building 421/439 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/components/dist/esm/OverlayScrollbars-9b821cbe.js
<s> [webpack.Progress] 60% building 421/440 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/components/dist/esm/GlobalScrollAreaStyles-8793ce4a.js
<s> [webpack.Progress] 60% building 422/440 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/components/dist/esm/GlobalScrollAreaStyles-8793ce4a.js
<s> [webpack.Progress] 60% building 422/441 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/components/dist/esm/formatter-9bb0ae57.js
<s> [webpack.Progress] 60% building 422/442 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/an-instance.js
<s> [webpack.Progress] 60% building 423/442 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/an-instance.js
<s> [webpack.Progress] 60% building 424/442 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/an-instance.js
<s> [webpack.Progress] 61% building 425/442 modules 17 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/an-instance.js
<s> [webpack.Progress] 61% building 425/443 modules 18 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/define-iterator.js
<s> [webpack.Progress] 61% building 425/444 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/iterate.js
<s> [webpack.Progress] 61% building 425/445 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/channels/dist/esm/index.js
<s> [webpack.Progress] 61% building 425/446 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/store/dist/esm/csf/getValuesFromArgTypes.js
<s> [webpack.Progress] 61% building 425/447 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/store/dist/esm/csf/index.js
<s> [webpack.Progress] 61% building 425/448 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/airbnb-js-shims/target/es2018.js
<s> [webpack.Progress] 61% building 426/448 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/airbnb-js-shims/target/es2018.js
<s> [webpack.Progress] 61% building 427/448 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/airbnb-js-shims/target/es2018.js
<s> [webpack.Progress] 61% building 428/448 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/airbnb-js-shims/target/es2018.js
<s> [webpack.Progress] 61% building 428/449 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/engine-is-node.js
<s> [webpack.Progress] 61% building 429/449 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/engine-is-node.js
<s> [webpack.Progress] 61% building 429/450 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/v8-prototype-define-bug.js
<s> [webpack.Progress] 61% building 429/451 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/copy-constructor-properties.js
<s> [webpack.Progress] 61% building 430/451 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/copy-constructor-properties.js
<s> [webpack.Progress] 61% building 430/452 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/array-slice.js
<s> [webpack.Progress] 61% building 430/453 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/react/dist/esm/client/preview/types-6-3.js
<s> [webpack.Progress] 61% building 430/454 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/csf/dist/SBType.js
<s> [webpack.Progress] 61% building 430/455 modules 25 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/lodash/isEqual.js
<s> [webpack.Progress] 61% building 431/455 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/lodash/isEqual.js
<s> [webpack.Progress] 61% building 431/456 modules 25 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/a-constructor.js
<s> [webpack.Progress] 61% building 432/456 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/a-constructor.js
<s> [webpack.Progress] 61% building 432/457 modules 25 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/html.js
<s> [webpack.Progress] 61% building 432/458 modules 26 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/fast-deep-equal/index.js
<s> [webpack.Progress] 61% building 433/458 modules 25 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/fast-deep-equal/index.js
<s> [webpack.Progress] 62% building 434/458 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/fast-deep-equal/index.js
<s> [webpack.Progress] 62% building 435/458 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/fast-deep-equal/index.js
<s> [webpack.Progress] 62% building 436/458 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/fast-deep-equal/index.js
<s> [webpack.Progress] 62% building 436/459 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/string-trim-forced.js
<s> [webpack.Progress] 62% building 437/459 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/string-trim-forced.js
<s> [webpack.Progress] 62% building 438/459 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/string-trim-forced.js
<s> [webpack.Progress] 62% building 439/459 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/string-trim-forced.js
<s> [webpack.Progress] 62% building 439/460 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/process/browser.js
<s> [webpack.Progress] 62% building 440/460 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/process/browser.js
<s> [webpack.Progress] 62% building 441/460 modules 19 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/process/browser.js
<s> [webpack.Progress] 62% building 441/461 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/object.values/shim.js
<s> [webpack.Progress] 62% building 441/462 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/react/dist/esm/client/docs/typeScript/handleProp.js
<s> [webpack.Progress] 63% building 442/462 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/react/dist/esm/client/docs/typeScript/handleProp.js
<s> [webpack.Progress] 63% building 442/463 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/react/dist/esm/client/docs/propTypes/handleProp.js
<s> [webpack.Progress] 63% building 443/463 modules 20 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/react/dist/esm/client/docs/propTypes/handleProp.js
<s> [webpack.Progress] 63% building 443/464 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/function.prototype.name/implementation.js
<s> [webpack.Progress] 63% building 443/465 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/validate-arguments-length.js
<s> [webpack.Progress] 63% building 443/466 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/components/dist/esm/syntaxhighlighter-b09267a2.js
<s> [webpack.Progress] 63% building 443/467 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/string-punycode-to-ascii.js
<s> [webpack.Progress] 63% building 444/467 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/string-punycode-to-ascii.js
<s> [webpack.Progress] 63% building 445/467 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/string-punycode-to-ascii.js
<s> [webpack.Progress] 63% building 445/468 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.string.repeat.js
<s> [webpack.Progress] 63% building 445/469 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/array-from.js
<s> [webpack.Progress] 63% building 446/469 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/array-from.js
<s> [webpack.Progress] 63% building 447/469 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/array-from.js
<s> [webpack.Progress] 63% building 448/469 modules 21 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/array-from.js
<s> [webpack.Progress] 63% building 448/470 modules 22 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.number.is-nan.js
<s> [webpack.Progress] 63% building 448/471 modules 23 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/uuid-browser/v4.js
<s> [webpack.Progress] 63% building 448/472 modules 24 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/scheduler/index.js
<s> [webpack.Progress] 63% building 448/473 modules 25 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/define-built-in-accessor.js
<s> [webpack.Progress] 63% building 448/474 modules 26 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.array-buffer.constructor.js
<s> [webpack.Progress] 63% building 448/475 modules 27 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/native-url.js
<s> [webpack.Progress] 63% building 448/476 modules 28 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.string.trim-end.js
<s> [webpack.Progress] 63% building 448/477 modules 29 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.string.ends-with.js
<s> [webpack.Progress] 63% building 449/477 modules 28 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.string.ends-with.js
<s> [webpack.Progress] 63% building 449/478 modules 29 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/theming/dist/esm/index.js
<s> [webpack.Progress] 63% building 449/479 modules 30 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@mdx-js/react/dist/esm.js
<s> [webpack.Progress] 63% building 449/480 modules 31 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/lodash/_createCompounder.js
<s> [webpack.Progress] 63% building 449/481 modules 32 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/lodash/_baseGetTag.js
<s> [webpack.Progress] 63% building 449/482 modules 33 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/lodash/_arrayMap.js
<s> [webpack.Progress] 63% building 449/483 modules 34 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/string.prototype.padstart/shim.js
<s> [webpack.Progress] 63% building 449/484 modules 35 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/string.prototype.padend/shim.js
<s> [webpack.Progress] 63% building 449/485 modules 36 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/object.entries/shim.js
<s> [webpack.Progress] 63% building 449/486 modules 37 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/object.getownpropertydescriptors/shim.js
<s> [webpack.Progress] 64% building 450/486 modules 36 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/object.getownpropertydescriptors/shim.js
<s> [webpack.Progress] 64% building 450/487 modules 37 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/lodash/_baseAssignValue.js
<s> [webpack.Progress] 64% building 451/487 modules 36 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/lodash/_baseAssignValue.js
<s> [webpack.Progress] 64% building 451/488 modules 37 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/lodash/_baseIteratee.js
<s> [webpack.Progress] 64% building 452/488 modules 36 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/lodash/_baseIteratee.js
<s> [webpack.Progress] 64% building 452/489 modules 37 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/lodash/_getAllKeysIn.js
<s> [webpack.Progress] 64% building 452/490 modules 38 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/lodash/_baseForOwn.js
<s> [webpack.Progress] 64% building 452/491 modules 39 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/lodash/_basePickBy.js
<s> [webpack.Progress] 64% building 453/491 modules 38 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/lodash/_basePickBy.js
<s> [webpack.Progress] 64% building 453/492 modules 39 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.regexp.flags.js
<s> [webpack.Progress] 64% building 454/492 modules 38 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.regexp.flags.js
<s> [webpack.Progress] 64% building 455/492 modules 37 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.regexp.flags.js
<s> [webpack.Progress] 64% building 455/493 modules 38 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.array.splice.js
<s> [webpack.Progress] 64% building 455/494 modules 39 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/lodash/isObjectLike.js
<s> [webpack.Progress] 64% building 455/495 modules 40 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/lodash/_getPrototype.js
<s> [webpack.Progress] 64% building 455/496 modules 41 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/lodash/upperFirst.js
<s> [webpack.Progress] 64% building 455/497 modules 42 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/get-iterator-method.js
<s> [webpack.Progress] 64% building 455/498 modules 43 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/get-iterator.js
<s> [webpack.Progress] 64% building 456/498 modules 42 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/get-iterator.js
<s> [webpack.Progress] 64% building 456/499 modules 43 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/lodash/_basePick.js
<s> [webpack.Progress] 64% building 457/499 modules 42 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/lodash/_basePick.js
<s> [webpack.Progress] 64% building 458/499 modules 41 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/lodash/_basePick.js
<s> [webpack.Progress] 64% building 458/500 modules 42 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/lodash/_flatRest.js
<s> [webpack.Progress] 64% building 458/501 modules 43 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/create-iterator-constructor.js
<s> [webpack.Progress] 64% building 459/501 modules 42 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/create-iterator-constructor.js
<s> [webpack.Progress] 65% building 460/501 modules 41 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/internals/create-iterator-constructor.js
<s> [webpack.Progress] 64% building 460/502 modules 42 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/index.js
<s> [webpack.Progress] 65% building 461/502 modules 41 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/index.js
<s> [webpack.Progress] 65% building 462/502 modules 40 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/addon-docs/dist/esm/index.js
<s> [webpack.Progress] 65% building 462/503 modules 41 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/array-includes/polyfill.js
<s> [webpack.Progress] 65% building 463/503 modules 40 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/array-includes/polyfill.js
<s> [webpack.Progress] 65% building 464/503 modules 39 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/array-includes/polyfill.js
<s> [webpack.Progress] 65% building 465/503 modules 38 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/array-includes/polyfill.js
<s> [webpack.Progress] 65% building 466/503 modules 37 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/array-includes/polyfill.js
<s> [webpack.Progress] 65% building 467/503 modules 36 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/array-includes/polyfill.js
<s> [webpack.Progress] 65% building 467/504 modules 37 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/prop-types/factoryWithThrowingShims.js
<s> [webpack.Progress] 65% building 468/504 modules 36 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/prop-types/factoryWithThrowingShims.js
<s> [webpack.Progress] 65% building 469/504 modules 35 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/prop-types/factoryWithThrowingShims.js
<s> [webpack.Progress] 65% building 469/505 modules 36 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.reflect.get.js
<s> [webpack.Progress] 65% building 469/506 modules 37 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.reflect.construct.js
<s> [webpack.Progress] 65% building 469/507 modules 38 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.string.anchor.js
<s> [webpack.Progress] 65% building 469/508 modules 39 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.string.trim-start.js
<s> [webpack.Progress] 65% building 469/509 modules 40 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.typed-array.float64-array.js
<s> [webpack.Progress] 65% building 469/510 modules 41 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.typed-array.float32-array.js
<s> [webpack.Progress] 65% building 469/511 modules 42 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.string.bold.js
<s> [webpack.Progress] 65% building 470/511 modules 41 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.string.bold.js
<s> [webpack.Progress] 65% building 470/512 modules 42 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/core-js/modules/es.typed-array.uint16-array.js
<s> [webpack.Progress] 64% building 470/513 modules 43 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/docs-tools/dist/esm/argTypes/convert/index.js
<s> [webpack.Progress] 65% building 471/513 modules 42 active /Users/dianabernabei/Documents/Progetti/codemotion/storybook-workshop-codemotion/node_modules/@storybook/docs-tools/dist/esm/argTypes/convert/index.js