-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-storybook.log
2572 lines (2571 loc) · 383 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.3.12
info
info => Cleaning outputDir: /var/folders/bd/3s_j0l115n5d3jyy_plw_bvm0000gn/T/chromatic--34873-WiVXYJUrmPVV
info => Copying static files: ./public => ./
info => Loading presets
info => Compiling preview..
info => Loading 1 config file in "/Users/stephan/Coding/storyswap-frontend/.storybook"
info => Loading 9 other files in "/Users/stephan/Coding/storyswap-frontend/.storybook"
info => Adding stories defined in "/Users/stephan/Coding/storyswap-frontend/.storybook/main.js"
info => Loading Webpack configuration from `node_modules/react-scripts`
info => Removing existing JavaScript and TypeScript rules.
info => Modifying Create React App rules.
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/stephan/Coding/storyswap-frontend/node_modules/@storybook/core-client/dist/esm/globals/polyfills.js /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/core-client/dist/esm/globals/globals.js /Users/stephan/Coding/storyswap-frontend/.storybook/storybook-init-framework-entry.js /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/common/config.js-generated-other-entry.js /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/config.js-generated-other-entry.js /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-links/dist/esm/preset/addDecorator.js-generated-other-entry.js /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-actions/dist/esm/preset/addDecorator.js-generated-other-entry.js /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-actions/dist/esm/preset/addArgs.js-generated-other-entry.js /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-backgrounds/dist/esm/preset/addDecorator.js-generated-other-entry.js /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-backgrounds/dist/esm/preset/addParameter.js-generated-other-entry.js /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-measure/dist/esm/preset/preview.js-generated-other-entry.js /Users/stephan/Coding/storyswap-frontend/node_modules/storybook-addon-outline/dist/esm/preset/addDecorator.js-generated-other-entry.js /Users/stephan/Coding/storyswap-frontend/.storybook/preview.js-generated-config-entry.js /Users/stephan/Coding/storyswap-frontend/.storybook/generated-stories-entry.js
<s> [webpack.Progress] 10% building 1/1 modules 0 active
<s> [webpack.Progress] 10% building 1/2 modules 1 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/.storybook/storybook-init-framework-entry.js
<s> [webpack.Progress] 10% building 1/3 modules 2 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/.storybook/preview.js-generated-config-entry.js
<s> [webpack.Progress] 10% building 1/4 modules 3 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/.storybook/generated-stories-entry.js
<s> [webpack.Progress] 10% building 2/4 modules 2 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/.storybook/preview.js-generated-config-entry.js
<s> [webpack.Progress] 10% building 3/4 modules 1 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/.storybook/storybook-init-framework-entry.js
<s> [webpack.Progress] 10% building 4/4 modules 0 active
<s> [webpack.Progress] 10% building 4/5 modules 1 active /Users/stephan/Coding/storyswap-frontend/node_modules/storybook-addon-outline/dist/esm/preset/addDecorator.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 4/6 modules 2 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-links/dist/esm/preset/addDecorator.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 4/7 modules 3 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-actions/dist/esm/preset/addDecorator.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 4/8 modules 4 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-actions/dist/esm/preset/addArgs.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 4/9 modules 5 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-backgrounds/dist/esm/preset/addDecorator.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 4/10 modules 6 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-backgrounds/dist/esm/preset/addParameter.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 4/11 modules 7 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-measure/dist/esm/preset/preview.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 4/12 modules 8 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/common/config.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 4/13 modules 9 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/config.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 4/14 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/core-client/dist/esm/globals/polyfills.js
<s> [webpack.Progress] 10% building 4/15 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/core-client/dist/esm/globals/globals.js
<s> [webpack.Progress] 10% building 5/15 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/core-client/dist/esm/globals/globals.js
<s> [webpack.Progress] 10% building 6/15 modules 9 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/core-client/dist/esm/globals/globals.js
<s> [webpack.Progress] 10% building 7/15 modules 8 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/core-client/dist/esm/globals/globals.js
<s> [webpack.Progress] 10% building 8/15 modules 7 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/core-client/dist/esm/globals/globals.js
<s> [webpack.Progress] 11% building 9/15 modules 6 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/core-client/dist/esm/globals/globals.js
<s> [webpack.Progress] 11% building 10/15 modules 5 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/core-client/dist/esm/globals/globals.js
<s> [webpack.Progress] 11% building 11/15 modules 4 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/core-client/dist/esm/globals/globals.js
<s> [webpack.Progress] 11% building 12/15 modules 3 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/core-client/dist/esm/globals/globals.js
<s> [webpack.Progress] 11% building 13/15 modules 2 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/core-client/dist/esm/globals/globals.js
<s> [webpack.Progress] 11% building 13/16 modules 3 active /Users/stephan/Coding/storyswap-frontend/src sync /^\.(?:(?:^|\/|(?:(?:(?!(?:^|\/)\.).)*?)\/)(?!\.)(?=.)[^/]*?\.stories\.mdx)$/
<s> [webpack.Progress] 11% building 13/17 modules 4 active /Users/stephan/Coding/storyswap-frontend/src sync /^\.(?:(?:^|\/|(?:(?:(?!(?:^|\/)\.).)*?)\/)(?!\.)(?=.)[^/]*?\.stories\.(js|jsx|ts|tsx))$/
<s> [webpack.Progress] 11% building 13/18 modules 5 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/.storybook/preview.js
<s> [webpack.Progress] 11% building 13/19 modules 6 active /Users/stephan/Coding/storyswap-frontend/node_modules/storybook-addon-outline/dist/esm/preset/addDecorator.js
<s> [webpack.Progress] 11% building 13/20 modules 7 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-links/dist/esm/preset/addDecorator.js
<s> [webpack.Progress] 11% building 13/21 modules 8 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-actions/dist/esm/preset/addDecorator.js
<s> [webpack.Progress] 11% building 13/22 modules 9 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-actions/dist/esm/preset/addArgs.js
<s> [webpack.Progress] 11% building 13/23 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-backgrounds/dist/esm/preset/addDecorator.js
<s> [webpack.Progress] 11% building 13/24 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-backgrounds/dist/esm/preset/addParameter.js
<s> [webpack.Progress] 11% building 13/25 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-measure/dist/esm/preset/preview.js
<s> [webpack.Progress] 11% building 13/26 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/common/config.js
<s> [webpack.Progress] 11% building 13/27 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/config.js
<s> [webpack.Progress] 11% building 14/27 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/config.js
<s> [webpack.Progress] 11% building 15/27 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/config.js
<s> [webpack.Progress] 11% building 16/27 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/config.js
<s> [webpack.Progress] 12% building 17/27 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/config.js
<s> [webpack.Progress] 12% building 18/27 modules 9 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/config.js
<s> [webpack.Progress] 12% building 19/27 modules 8 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/config.js
<s> [webpack.Progress] 12% building 20/27 modules 7 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/config.js
<s> [webpack.Progress] 12% building 21/27 modules 6 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/config.js
<s> [webpack.Progress] 12% building 22/27 modules 5 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/config.js
<s> [webpack.Progress] 12% building 23/27 modules 4 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/config.js
<s> [webpack.Progress] 12% building 24/27 modules 3 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/.storybook/preview.js
<s> [webpack.Progress] 13% building 25/27 modules 2 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/.storybook/preview.js
<s> [webpack.Progress] 13% building 26/27 modules 1 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/.storybook/preview.js
<s> [webpack.Progress] 13% building 27/27 modules 0 active
<s> [webpack.Progress] 13% building 27/28 modules 1 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/builder-webpack4/node_modules/webpack/buildin/module.js
<s> [webpack.Progress] 13% building 28/28 modules 0 active
<s> [webpack.Progress] 13% building 28/29 modules 1 active /Users/stephan/Coding/storyswap-frontend/node_modules/storybook-addon-outline/dist/esm/withOutline.js
<s> [webpack.Progress] 13% building 28/30 modules 2 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-links/dist/esm/index.js
<s> [webpack.Progress] 13% building 28/31 modules 3 active /Users/stephan/Coding/storyswap-frontend/node_modules/storybook-addon-outline/dist/esm/constants.js
<s> [webpack.Progress] 13% building 28/32 modules 4 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-actions/dist/esm/index.js
<s> [webpack.Progress] 13% building 28/33 modules 5 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/common/enhanceArgTypes.js
<s> [webpack.Progress] 13% building 28/34 modules 6 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-actions/dist/esm/preset/addArgsHelpers.js
<s> [webpack.Progress] 13% building 28/35 modules 7 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/extractArgTypes.js
<s> [webpack.Progress] 13% building 28/36 modules 8 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/jsxDecorator.js
<s> [webpack.Progress] 13% building 28/37 modules 9 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-measure/dist/esm/withMeasure.js
<s> [webpack.Progress] 13% building 28/38 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/stephan/Coding/storyswap-frontend/node_modules/@mdx-js/loader/index.js??ref--5-1!/Users/stephan/Coding/storyswap-frontend/src/stories/Introduction.stories.mdx
<s> [webpack.Progress] 13% building 28/39 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--7!/Users/stephan/Coding/storyswap-frontend/src/stories/Button.stories.jsx
<s> [webpack.Progress] 13% building 28/40 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--7!/Users/stephan/Coding/storyswap-frontend/src/stories/Header.stories.jsx
<s> [webpack.Progress] 13% building 28/41 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--7!/Users/stephan/Coding/storyswap-frontend/src/stories/Page.stories.jsx
<s> [webpack.Progress] 13% building 29/41 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--7!/Users/stephan/Coding/storyswap-frontend/src/stories/Page.stories.jsx
<s> [webpack.Progress] 13% building 30/41 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--7!/Users/stephan/Coding/storyswap-frontend/src/stories/Page.stories.jsx
<s> [webpack.Progress] 13% building 31/41 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--7!/Users/stephan/Coding/storyswap-frontend/src/stories/Page.stories.jsx
<s> [webpack.Progress] 13% building 32/41 modules 9 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--7!/Users/stephan/Coding/storyswap-frontend/src/stories/Page.stories.jsx
<s> [webpack.Progress] 13% building 33/41 modules 8 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--7!/Users/stephan/Coding/storyswap-frontend/src/stories/Page.stories.jsx
<s> [webpack.Progress] 14% building 34/41 modules 7 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--7!/Users/stephan/Coding/storyswap-frontend/src/stories/Page.stories.jsx
<s> [webpack.Progress] 14% building 35/41 modules 6 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--7!/Users/stephan/Coding/storyswap-frontend/src/stories/Page.stories.jsx
<s> [webpack.Progress] 14% building 36/41 modules 5 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--7!/Users/stephan/Coding/storyswap-frontend/src/stories/Page.stories.jsx
<s> [webpack.Progress] 14% building 37/41 modules 4 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--7!/Users/stephan/Coding/storyswap-frontend/src/stories/Page.stories.jsx
<s> [webpack.Progress] 14% building 37/42 modules 5 active /Users/stephan/Coding/storyswap-frontend/node_modules/mini-css-extract-plugin/dist/loader.js??ref--9-oneOf-4-0!/Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-4-1!/Users/stephan/Coding/storyswap-frontend/node_modules/postcss-loader/src/index.js??postcss!/Users/stephan/Coding/storyswap-frontend/node_modules/postcss-loader/src/index.js??postcss!/Users/stephan/Coding/storyswap-frontend/src/styles/index.css
<s> [webpack.Progress] 14% building 37/43 modules 6 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/builder-webpack4/node_modules/webpack/buildin/harmony-module.js
<s> [webpack.Progress] 14% building 37/44 modules 7 active /Users/stephan/Coding/storyswap-frontend/node_modules/regenerator-runtime/runtime.js
<s> [webpack.Progress] 14% building 37/45 modules 8 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/client-logger/dist/esm/index.js
<s> [webpack.Progress] 14% building 37/46 modules 9 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/client-api/dist/esm/index.js
<s> [webpack.Progress] 14% building 37/47 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.array.slice.js
<s> [webpack.Progress] 14% building 37/48 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.object.freeze.js
<s> [webpack.Progress] 14% building 37/49 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.regexp.constructor.js
<s> [webpack.Progress] 14% building 37/50 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.regexp.exec.js
<s> [webpack.Progress] 14% building 37/51 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.regexp.to-string.js
<s> [webpack.Progress] 14% building 37/52 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.object.entries.js
<s> [webpack.Progress] 14% building 37/53 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.array.reduce.js
<s> [webpack.Progress] 14% building 37/54 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.symbol.js
<s> [webpack.Progress] 14% building 37/55 modules 18 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.symbol.description.js
<s> [webpack.Progress] 14% building 37/56 modules 19 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.object.to-string.js
<s> [webpack.Progress] 14% building 37/57 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.symbol.iterator.js
<s> [webpack.Progress] 14% building 37/58 modules 21 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.string.iterator.js
<s> [webpack.Progress] 14% building 37/59 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.array.filter.js
<s> [webpack.Progress] 14% building 37/60 modules 23 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.array.iterator.js
<s> [webpack.Progress] 14% building 37/61 modules 24 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/web.dom-collections.iterator.js
<s> [webpack.Progress] 14% building 37/62 modules 25 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.function.name.js
<s> [webpack.Progress] 14% building 37/63 modules 26 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.array.from.js
<s> [webpack.Progress] 14% building 38/63 modules 25 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.array.from.js
<s> [webpack.Progress] 14% building 39/63 modules 24 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.array.from.js
<s> [webpack.Progress] 14% building 40/63 modules 23 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.array.from.js
<s> [webpack.Progress] 14% building 40/64 modules 24 active /Users/stephan/Coding/storyswap-frontend/node_modules/airbnb-js-shims/index.js
<s> [webpack.Progress] 14% building 40/65 modules 25 active /Users/stephan/Coding/storyswap-frontend/node_modules/global/window.js
<s> [webpack.Progress] 14% building 41/65 modules 24 active /Users/stephan/Coding/storyswap-frontend/node_modules/global/window.js
<s> [webpack.Progress] 15% building 42/65 modules 23 active /Users/stephan/Coding/storyswap-frontend/node_modules/global/window.js
<s> [webpack.Progress] 15% building 43/65 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/global/window.js
<s> [webpack.Progress] 15% building 43/66 modules 23 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/react/dist/esm/client/index.js
<s> [webpack.Progress] 15% building 44/66 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/react/dist/esm/client/index.js
<s> [webpack.Progress] 15% building 45/66 modules 21 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/react/dist/esm/client/index.js
<s> [webpack.Progress] 15% building 46/66 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/react/dist/esm/client/index.js
<s> [webpack.Progress] 15% building 47/66 modules 19 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/react/dist/esm/client/index.js
<s> [webpack.Progress] 15% building 48/66 modules 18 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/react/dist/esm/client/index.js
<s> [webpack.Progress] 15% building 49/66 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/react/dist/esm/client/index.js
<s> [webpack.Progress] 16% building 50/66 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/react/dist/esm/client/index.js
<s> [webpack.Progress] 16% building 51/66 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/react/dist/esm/client/index.js
<s> [webpack.Progress] 16% building 52/66 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/react/dist/esm/client/index.js
<s> [webpack.Progress] 16% building 53/66 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/react/dist/esm/client/index.js
<s> [webpack.Progress] 16% building 54/66 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/react/dist/esm/client/index.js
<s> [webpack.Progress] 16% building 55/66 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/react/dist/esm/client/index.js
<s> [webpack.Progress] 16% building 56/66 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/react/dist/esm/client/index.js
<s> [webpack.Progress] 16% building 57/66 modules 9 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/react/dist/esm/client/index.js
<s> [webpack.Progress] 16% building 58/66 modules 8 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/react/dist/esm/client/index.js
<s> [webpack.Progress] 17% building 59/66 modules 7 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/react/dist/esm/client/index.js
<s> [webpack.Progress] 17% building 60/66 modules 6 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/react/dist/esm/client/index.js
<s> [webpack.Progress] 17% building 61/66 modules 5 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/react/dist/esm/client/index.js
<s> [webpack.Progress] 17% building 62/66 modules 4 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/react/dist/esm/client/index.js
<s> [webpack.Progress] 17% building 62/67 modules 5 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.array.concat.js
<s> [webpack.Progress] 17% building 62/68 modules 6 active /Users/stephan/Coding/storyswap-frontend/node_modules/storybook-addon-outline/dist/esm/outlineCSS.js
<s> [webpack.Progress] 17% building 62/69 modules 7 active /Users/stephan/Coding/storyswap-frontend/node_modules/storybook-addon-outline/dist/esm/helpers.js
<s> [webpack.Progress] 17% building 63/69 modules 6 active /Users/stephan/Coding/storyswap-frontend/node_modules/storybook-addon-outline/dist/esm/helpers.js
<s> [webpack.Progress] 17% building 64/69 modules 5 active /Users/stephan/Coding/storyswap-frontend/node_modules/storybook-addon-outline/dist/esm/helpers.js
<s> [webpack.Progress] 17% building 64/70 modules 6 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-links/dist/esm/preview.js
<s> [webpack.Progress] 17% building 64/71 modules 7 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-actions/dist/esm/constants.js
<s> [webpack.Progress] 17% building 64/72 modules 8 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/common/normalizeArgTypes.js
<s> [webpack.Progress] 17% building 64/73 modules 9 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/extractProps.js
<s> [webpack.Progress] 17% building 65/73 modules 8 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/extractProps.js
<s> [webpack.Progress] 17% building 65/74 modules 9 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/builder-webpack4/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 17% building 65/75 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-measure/dist/esm/util.js
<s> [webpack.Progress] 17% building 65/76 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/blocks/index.js
<s> [webpack.Progress] 17% building 65/77 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-backgrounds/dist/esm/decorators/index.js
<s> [webpack.Progress] 17% building 66/77 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-backgrounds/dist/esm/decorators/index.js
<s> [webpack.Progress] 18% building 67/77 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-backgrounds/dist/esm/decorators/index.js
<s> [webpack.Progress] 18% building 68/77 modules 9 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-backgrounds/dist/esm/decorators/index.js
<s> [webpack.Progress] 18% building 69/77 modules 8 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-backgrounds/dist/esm/decorators/index.js
<s> [webpack.Progress] 18% building 70/77 modules 7 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-backgrounds/dist/esm/decorators/index.js
<s> [webpack.Progress] 18% building 71/77 modules 6 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-backgrounds/dist/esm/decorators/index.js
<s> [webpack.Progress] 18% building 72/77 modules 5 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-backgrounds/dist/esm/decorators/index.js
<s> [webpack.Progress] 18% building 72/78 modules 6 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/index.js
<s> [webpack.Progress] 18% building 72/79 modules 7 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/shared.js
<s> [webpack.Progress] 18% building 73/79 modules 6 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/shared.js
<s> [webpack.Progress] 18% building 74/79 modules 5 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/shared.js
<s> [webpack.Progress] 18% building 74/80 modules 6 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.string.search.js
<s> [webpack.Progress] 18% building 74/81 modules 7 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/features/symbol/index.js
<s> [webpack.Progress] 18% building 74/82 modules 8 active /Users/stephan/Coding/storyswap-frontend/node_modules/react/jsx-runtime.js
<s> [webpack.Progress] 19% building 75/82 modules 7 active /Users/stephan/Coding/storyswap-frontend/node_modules/react/jsx-runtime.js
<s> [webpack.Progress] 19% building 76/82 modules 6 active /Users/stephan/Coding/storyswap-frontend/node_modules/react/jsx-runtime.js
<s> [webpack.Progress] 19% building 76/83 modules 7 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-measure/dist/esm/box-model/visualizer.js
<s> [webpack.Progress] 19% building 76/84 modules 8 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-measure/dist/esm/box-model/canvas.js
<s> [webpack.Progress] 19% building 76/85 modules 9 active /Users/stephan/Coding/storyswap-frontend/node_modules/file-loader/dist/cjs.js??ref--9-oneOf-8!/Users/stephan/Coding/storyswap-frontend/src/stories/assets/code-brackets.svg
<s> [webpack.Progress] 19% building 76/86 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/file-loader/dist/cjs.js??ref--9-oneOf-8!/Users/stephan/Coding/storyswap-frontend/src/stories/assets/colors.svg
<s> [webpack.Progress] 19% building 76/87 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/file-loader/dist/cjs.js??ref--9-oneOf-8!/Users/stephan/Coding/storyswap-frontend/src/stories/assets/comments.svg
<s> [webpack.Progress] 19% building 76/88 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/file-loader/dist/cjs.js??ref--9-oneOf-8!/Users/stephan/Coding/storyswap-frontend/src/stories/assets/direction.svg
<s> [webpack.Progress] 19% building 76/89 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/file-loader/dist/cjs.js??ref--9-oneOf-8!/Users/stephan/Coding/storyswap-frontend/src/stories/assets/flow.svg
<s> [webpack.Progress] 19% building 76/90 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/file-loader/dist/cjs.js??ref--9-oneOf-8!/Users/stephan/Coding/storyswap-frontend/src/stories/assets/stackalt.svg
<s> [webpack.Progress] 19% building 76/91 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/file-loader/dist/cjs.js??ref--9-oneOf-8!/Users/stephan/Coding/storyswap-frontend/src/stories/assets/repo.svg
<s> [webpack.Progress] 19% building 77/91 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/file-loader/dist/cjs.js??ref--9-oneOf-8!/Users/stephan/Coding/storyswap-frontend/src/stories/assets/repo.svg
<s> [webpack.Progress] 19% building 78/91 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/file-loader/dist/cjs.js??ref--9-oneOf-8!/Users/stephan/Coding/storyswap-frontend/src/stories/assets/repo.svg
<s> [webpack.Progress] 19% building 78/92 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/client-api/dist/esm/client_api.js
<s> [webpack.Progress] 19% building 78/93 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.object.assign.js
<s> [webpack.Progress] 19% building 78/94 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.object.keys.js
<s> [webpack.Progress] 19% building 78/95 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.array.join.js
<s> [webpack.Progress] 19% building 78/96 modules 18 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.array.map.js
<s> [webpack.Progress] 19% building 78/97 modules 19 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.string.match.js
<s> [webpack.Progress] 19% building 78/98 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.string.replace.js
<s> [webpack.Progress] 19% building 78/99 modules 21 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/web.dom-collections.for-each.js
<s> [webpack.Progress] 19% building 78/100 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/mapValues.js
<s> [webpack.Progress] 19% building 78/101 modules 23 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/src/stories/Page.jsx
<s> [webpack.Progress] 19% building 79/101 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/src/stories/Page.jsx
<s> [webpack.Progress] 19% building 80/101 modules 21 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/src/stories/Page.jsx
<s> [webpack.Progress] 19% building 81/101 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/src/stories/Page.jsx
<s> [webpack.Progress] 19% building 81/102 modules 21 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/src/stories/Header.jsx
<s> [webpack.Progress] 19% building 81/103 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/src/stories/Button.jsx
<s> [webpack.Progress] 19% building 82/103 modules 21 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/src/stories/Button.jsx
<s> [webpack.Progress] 19% building 83/103 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/src/stories/Button.jsx
<s> [webpack.Progress] 20% building 84/103 modules 19 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/src/stories/Button.jsx
<s> [webpack.Progress] 20% building 85/103 modules 18 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/src/stories/Button.jsx
<s> [webpack.Progress] 20% building 86/103 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/src/stories/Button.jsx
<s> [webpack.Progress] 20% building 87/103 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/src/stories/Button.jsx
<s> [webpack.Progress] 20% building 88/103 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/src/stories/Button.jsx
<s> [webpack.Progress] 20% building 89/103 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/babel-loader/lib/index.js??ref--9-oneOf-2!/Users/stephan/Coding/storyswap-frontend/src/stories/Button.jsx
<s> [webpack.Progress] 20% building 89/104 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/export.js
<s> [webpack.Progress] 20% building 89/105 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/descriptors.js
<s> [webpack.Progress] 20% building 89/106 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/function-uncurry-this.js
<s> [webpack.Progress] 20% building 89/107 modules 18 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/define-well-known-symbol.js
<s> [webpack.Progress] 20% building 89/108 modules 19 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/to-string-tag-support.js
<s> [webpack.Progress] 20% building 89/109 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/string-multibyte.js
<s> [webpack.Progress] 20% building 89/110 modules 21 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/to-indexed-object.js
<s> [webpack.Progress] 20% building 89/111 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/global.js
<s> [webpack.Progress] 20% building 90/111 modules 21 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/global.js
<s> [webpack.Progress] 20% building 90/112 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/react/index.js
<s> [webpack.Progress] 20% building 90/113 modules 23 active /Users/stephan/Coding/storyswap-frontend/node_modules/airbnb-js-shims/target/es5.js
<s> [webpack.Progress] 20% building 90/114 modules 24 active /Users/stephan/Coding/storyswap-frontend/node_modules/util-deprecate/browser.js
<s> [webpack.Progress] 20% building 91/114 modules 23 active /Users/stephan/Coding/storyswap-frontend/node_modules/util-deprecate/browser.js
<s> [webpack.Progress] 21% building 92/114 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/util-deprecate/browser.js
<s> [webpack.Progress] 21% building 93/114 modules 21 active /Users/stephan/Coding/storyswap-frontend/node_modules/util-deprecate/browser.js
<s> [webpack.Progress] 21% building 94/114 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/util-deprecate/browser.js
<s> [webpack.Progress] 21% building 95/114 modules 19 active /Users/stephan/Coding/storyswap-frontend/node_modules/util-deprecate/browser.js
<s> [webpack.Progress] 21% building 96/114 modules 18 active /Users/stephan/Coding/storyswap-frontend/node_modules/util-deprecate/browser.js
<s> [webpack.Progress] 21% building 97/114 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/util-deprecate/browser.js
<s> [webpack.Progress] 21% building 98/114 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/util-deprecate/browser.js
<s> [webpack.Progress] 21% building 99/114 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/util-deprecate/browser.js
<s> [webpack.Progress] 21% building 99/115 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/index.js
<s> [webpack.Progress] 21% building 99/116 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/engine-v8-version.js
<s> [webpack.Progress] 21% building 99/117 modules 18 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/well-known-symbol.js
<s> [webpack.Progress] 21% building 99/118 modules 19 active /Users/stephan/Coding/storyswap-frontend/node_modules/ts-dedent/esm/index.js
<s> [webpack.Progress] 22% building 100/118 modules 18 active /Users/stephan/Coding/storyswap-frontend/node_modules/ts-dedent/esm/index.js
<s> [webpack.Progress] 22% building 101/118 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/ts-dedent/esm/index.js
<s> [webpack.Progress] 22% building 102/118 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/ts-dedent/esm/index.js
<s> [webpack.Progress] 22% building 103/118 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/ts-dedent/esm/index.js
<s> [webpack.Progress] 22% building 104/118 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/ts-dedent/esm/index.js
<s> [webpack.Progress] 22% building 105/118 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/ts-dedent/esm/index.js
<s> [webpack.Progress] 22% building 106/118 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/ts-dedent/esm/index.js
<s> [webpack.Progress] 22% building 107/118 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/ts-dedent/esm/index.js
<s> [webpack.Progress] 22% building 107/119 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/react/cjs/react-jsx-runtime.production.min.js
<s> [webpack.Progress] 22% building 108/119 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/react/cjs/react-jsx-runtime.production.min.js
<s> [webpack.Progress] 22% building 108/120 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addons/dist/esm/public_api.js
<s> [webpack.Progress] 23% building 109/120 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addons/dist/esm/public_api.js
<s> [webpack.Progress] 23% building 109/121 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/babel-preset-react-app/node_modules/@babel/runtime/helpers/esm/objectSpread2.js
<s> [webpack.Progress] 23% building 109/122 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-element-to-jsx-string/dist/cjs/index.js
<s> [webpack.Progress] 23% building 110/122 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-element-to-jsx-string/dist/cjs/index.js
<s> [webpack.Progress] 23% building 110/123 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-actions/dist/esm/models/index.js
<s> [webpack.Progress] 23% building 110/124 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-actions/dist/esm/preview/index.js
<s> [webpack.Progress] 23% building 110/125 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-backgrounds/dist/esm/decorators/withBackground.js
<s> [webpack.Progress] 23% building 111/125 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-backgrounds/dist/esm/decorators/withBackground.js
<s> [webpack.Progress] 23% building 112/125 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-backgrounds/dist/esm/decorators/withBackground.js
<s> [webpack.Progress] 23% building 113/125 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-backgrounds/dist/esm/decorators/withBackground.js
<s> [webpack.Progress] 23% building 114/125 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-backgrounds/dist/esm/decorators/withBackground.js
<s> [webpack.Progress] 23% building 115/125 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-backgrounds/dist/esm/decorators/withBackground.js
<s> [webpack.Progress] 23% building 115/126 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/react/cjs/react.production.min.js
<s> [webpack.Progress] 23% building 116/126 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/react/cjs/react.production.min.js
<s> [webpack.Progress] 24% building 117/126 modules 9 active /Users/stephan/Coding/storyswap-frontend/node_modules/react/cjs/react.production.min.js
<s> [webpack.Progress] 24% building 117/127 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/typeScript/handleProp.js
<s> [webpack.Progress] 24% building 117/128 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/handleProp.js
<s> [webpack.Progress] 24% building 118/128 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/handleProp.js
<s> [webpack.Progress] 24% building 118/129 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/types.js
<s> [webpack.Progress] 24% building 118/130 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/extractDocgenProps.js
<s> [webpack.Progress] 24% building 119/130 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/extractDocgenProps.js
<s> [webpack.Progress] 24% building 119/131 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/mini-css-extract-plugin/dist/loader.js??ref--9-oneOf-4-0!/Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-4-1!/Users/stephan/Coding/storyswap-frontend/node_modules/postcss-loader/src/index.js??postcss!/Users/stephan/Coding/storyswap-frontend/node_modules/postcss-loader/src/index.js??postcss!/Users/stephan/Coding/storyswap-frontend/src/stories/page.css
<s> [webpack.Progress] 24% building 119/132 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/blocks/mdx.js
<s> [webpack.Progress] 24% building 119/133 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/blocks/Wrapper.js
<s> [webpack.Progress] 24% building 119/134 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/blocks/types.js
<s> [webpack.Progress] 24% building 119/135 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/blocks/Title.js
<s> [webpack.Progress] 24% building 119/136 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/blocks/Subtitle.js
<s> [webpack.Progress] 24% building 119/137 modules 18 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/blocks/Subheading.js
<s> [webpack.Progress] 24% building 119/138 modules 19 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/blocks/Story.js
<s> [webpack.Progress] 24% building 119/139 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/blocks/Stories.js
<s> [webpack.Progress] 24% building 119/140 modules 21 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/blocks/SourceContainer.js
<s> [webpack.Progress] 24% building 119/141 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/blocks/Source.js
<s> [webpack.Progress] 24% building 119/142 modules 23 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/blocks/Props.js
<s> [webpack.Progress] 24% building 119/143 modules 24 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/blocks/Preview.js
<s> [webpack.Progress] 24% building 119/144 modules 25 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/blocks/Primary.js
<s> [webpack.Progress] 24% building 119/145 modules 26 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/blocks/Meta.js
<s> [webpack.Progress] 24% building 120/145 modules 25 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/blocks/Meta.js
<s> [webpack.Progress] 24% building 120/146 modules 26 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/blocks/Heading.js
<s> [webpack.Progress] 24% building 120/147 modules 27 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/blocks/DocsStory.js
<s> [webpack.Progress] 24% building 120/148 modules 28 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/blocks/DocsContainer.js
<s> [webpack.Progress] 24% building 120/149 modules 29 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/blocks/DocsPage.js
<s> [webpack.Progress] 24% building 120/150 modules 30 active /Users/stephan/Coding/storyswap-frontend/node_modules/mini-css-extract-plugin/dist/loader.js??ref--9-oneOf-4-0!/Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-4-1!/Users/stephan/Coding/storyswap-frontend/node_modules/postcss-loader/src/index.js??postcss!/Users/stephan/Coding/storyswap-frontend/node_modules/postcss-loader/src/index.js??postcss!/Users/stephan/Coding/storyswap-frontend/src/stories/header.css
<s> [webpack.Progress] 24% building 120/151 modules 31 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/blocks/DocsContext.js
<s> [webpack.Progress] 24% building 120/152 modules 32 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/blocks/Description.js
<s> [webpack.Progress] 24% building 120/153 modules 33 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/blocks/Canvas.js
<s> [webpack.Progress] 24% building 121/153 modules 32 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/blocks/Canvas.js
<s> [webpack.Progress] 24% building 121/154 modules 33 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.map.js
<s> [webpack.Progress] 24% building 121/155 modules 34 active /Users/stephan/Coding/storyswap-frontend/node_modules/mini-css-extract-plugin/dist/loader.js??ref--9-oneOf-4-0!/Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-4-1!/Users/stephan/Coding/storyswap-frontend/node_modules/postcss-loader/src/index.js??postcss!/Users/stephan/Coding/storyswap-frontend/node_modules/postcss-loader/src/index.js??postcss!/Users/stephan/Coding/storyswap-frontend/src/stories/button.css
<s> [webpack.Progress] 24% building 121/156 modules 35 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/function-call.js
<s> [webpack.Progress] 24% building 122/156 modules 34 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/function-call.js
<s> [webpack.Progress] 24% building 123/156 modules 33 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/function-call.js
<s> [webpack.Progress] 24% building 124/156 modules 32 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/function-call.js
<s> [webpack.Progress] 24% building 124/157 modules 33 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/esnext.symbol.replace-all.js
<s> [webpack.Progress] 24% building 124/158 modules 34 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-measure/dist/esm/box-model/labels.js
<s> [webpack.Progress] 24% building 124/159 modules 35 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/esnext.symbol.observable.js
<s> [webpack.Progress] 24% building 124/160 modules 36 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/esnext.symbol.metadata.js
<s> [webpack.Progress] 24% building 124/161 modules 37 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/esnext.symbol.pattern-match.js
<s> [webpack.Progress] 24% building 124/162 modules 38 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/esnext.symbol.matcher.js
<s> [webpack.Progress] 24% building 124/163 modules 39 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/esnext.symbol.dispose.js
<s> [webpack.Progress] 24% building 124/164 modules 40 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/get-method.js
<s> [webpack.Progress] 24% building 124/165 modules 41 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/regexp-exec-abstract.js
<s> [webpack.Progress] 24% building 124/166 modules 42 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/same-value.js
<s> [webpack.Progress] 24% building 124/167 modules 43 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/esnext.symbol.async-dispose.js
<s> [webpack.Progress] 24% building 124/168 modules 44 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/to-string.js
<s> [webpack.Progress] 24% building 124/169 modules 45 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/require-object-coercible.js
<s> [webpack.Progress] 24% building 124/170 modules 46 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/an-object.js
<s> [webpack.Progress] 24% building 124/171 modules 47 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/fix-regexp-well-known-symbol-logic.js
<s> [webpack.Progress] 24% building 124/172 modules 48 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/blocks/Anchor.js
<s> [webpack.Progress] 24% building 124/173 modules 49 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/blocks/ArgsTable.js
<s> [webpack.Progress] 24% building 124/174 modules 50 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-method-has-species-support.js
<s> [webpack.Progress] 24% building 124/175 modules 51 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-backgrounds/dist/esm/decorators/withGrid.js
<s> [webpack.Progress] 24% building 124/176 modules 52 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-species-create.js
<s> [webpack.Progress] 24% building 124/177 modules 53 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/create-property.js
<s> [webpack.Progress] 24% building 124/178 modules 54 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/length-of-array-like.js
<s> [webpack.Progress] 24% building 124/179 modules 55 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/to-object.js
<s> [webpack.Progress] 24% building 124/180 modules 56 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/is-object.js
<s> [webpack.Progress] 25% building 125/180 modules 55 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/is-object.js
<s> [webpack.Progress] 25% building 125/181 modules 56 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/index.js
<s> [webpack.Progress] 25% building 125/182 modules 57 active /Users/stephan/Coding/storyswap-frontend/node_modules/@mdx-js/react/dist/esm.js
<s> [webpack.Progress] 25% building 126/182 modules 56 active /Users/stephan/Coding/storyswap-frontend/node_modules/@mdx-js/react/dist/esm.js
<s> [webpack.Progress] 25% building 127/182 modules 55 active /Users/stephan/Coding/storyswap-frontend/node_modules/@mdx-js/react/dist/esm.js
<s> [webpack.Progress] 25% building 128/182 modules 54 active /Users/stephan/Coding/storyswap-frontend/node_modules/@mdx-js/react/dist/esm.js
<s> [webpack.Progress] 25% building 129/182 modules 53 active /Users/stephan/Coding/storyswap-frontend/node_modules/@mdx-js/react/dist/esm.js
<s> [webpack.Progress] 25% building 130/182 modules 52 active /Users/stephan/Coding/storyswap-frontend/node_modules/@mdx-js/react/dist/esm.js
<s> [webpack.Progress] 25% building 131/182 modules 51 active /Users/stephan/Coding/storyswap-frontend/node_modules/@mdx-js/react/dist/esm.js
<s> [webpack.Progress] 25% building 132/182 modules 50 active /Users/stephan/Coding/storyswap-frontend/node_modules/@mdx-js/react/dist/esm.js
<s> [webpack.Progress] 25% building 133/182 modules 49 active /Users/stephan/Coding/storyswap-frontend/node_modules/@mdx-js/react/dist/esm.js
<s> [webpack.Progress] 26% building 134/182 modules 48 active /Users/stephan/Coding/storyswap-frontend/node_modules/@mdx-js/react/dist/esm.js
<s> [webpack.Progress] 26% building 134/183 modules 49 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-assign.js
<s> [webpack.Progress] 26% building 135/183 modules 48 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-assign.js
<s> [webpack.Progress] 26% building 136/183 modules 47 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-assign.js
<s> [webpack.Progress] 26% building 137/183 modules 46 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-assign.js
<s> [webpack.Progress] 26% building 138/183 modules 45 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-assign.js
<s> [webpack.Progress] 26% building 139/183 modules 44 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-assign.js
<s> [webpack.Progress] 26% building 140/183 modules 43 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-assign.js
<s> [webpack.Progress] 26% building 141/183 modules 42 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-assign.js
<s> [webpack.Progress] 26% building 141/184 modules 43 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/fails.js
<s> [webpack.Progress] 27% building 142/184 modules 42 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/fails.js
<s> [webpack.Progress] 27% building 143/184 modules 41 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/fails.js
<s> [webpack.Progress] 27% building 143/185 modules 42 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-method-is-strict.js
<s> [webpack.Progress] 27% building 144/185 modules 41 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-method-is-strict.js
<s> [webpack.Progress] 27% building 145/185 modules 40 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-method-is-strict.js
<s> [webpack.Progress] 27% building 146/185 modules 39 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-method-is-strict.js
<s> [webpack.Progress] 27% building 147/185 modules 38 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-method-is-strict.js
<s> [webpack.Progress] 27% building 147/186 modules 39 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/function-apply.js
<s> [webpack.Progress] 27% building 147/187 modules 40 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/create-non-enumerable-property.js
<s> [webpack.Progress] 27% building 148/187 modules 39 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/create-non-enumerable-property.js
<s> [webpack.Progress] 27% building 149/187 modules 38 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/create-non-enumerable-property.js
<s> [webpack.Progress] 28% building 150/187 modules 37 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/create-non-enumerable-property.js
<s> [webpack.Progress] 28% building 150/188 modules 38 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseAssignValue.js
<s> [webpack.Progress] 28% building 151/188 modules 37 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseAssignValue.js
<s> [webpack.Progress] 28% building 151/189 modules 38 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseIteratee.js
<s> [webpack.Progress] 28% building 152/189 modules 37 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseIteratee.js
<s> [webpack.Progress] 28% building 152/190 modules 38 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseForOwn.js
<s> [webpack.Progress] 28% building 152/191 modules 39 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-for-each.js
<s> [webpack.Progress] 28% building 153/191 modules 38 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-for-each.js
<s> [webpack.Progress] 28% building 154/191 modules 37 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-for-each.js
<s> [webpack.Progress] 28% building 155/191 modules 36 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-for-each.js
<s> [webpack.Progress] 28% building 156/191 modules 35 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-for-each.js
<s> [webpack.Progress] 28% building 157/191 modules 34 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-for-each.js
<s> [webpack.Progress] 28% building 158/191 modules 33 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-for-each.js
<s> [webpack.Progress] 28% building 158/192 modules 34 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/is-forced.js
<s> [webpack.Progress] 28% building 158/193 modules 35 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/path.js
<s> [webpack.Progress] 28% building 158/194 modules 36 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/copy-constructor-properties.js
<s> [webpack.Progress] 28% building 158/195 modules 37 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-define-property.js
<s> [webpack.Progress] 28% building 158/196 modules 38 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/indexed-object.js
<s> [webpack.Progress] 29% building 159/196 modules 37 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/indexed-object.js
<s> [webpack.Progress] 29% building 160/196 modules 36 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/indexed-object.js
<s> [webpack.Progress] 29% building 161/196 modules 35 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/indexed-object.js
<s> [webpack.Progress] 29% building 162/196 modules 34 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/indexed-object.js
<s> [webpack.Progress] 29% building 163/196 modules 33 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/indexed-object.js
<s> [webpack.Progress] 29% building 164/196 modules 32 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/indexed-object.js
<s> [webpack.Progress] 29% building 165/196 modules 31 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/indexed-object.js
<s> [webpack.Progress] 29% building 166/196 modules 30 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/indexed-object.js
<s> [webpack.Progress] 30% building 167/196 modules 29 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/indexed-object.js
<s> [webpack.Progress] 30% building 168/196 modules 28 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/indexed-object.js
<s> [webpack.Progress] 30% building 169/196 modules 27 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/indexed-object.js
<s> [webpack.Progress] 30% building 170/196 modules 26 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/indexed-object.js
<s> [webpack.Progress] 30% building 171/196 modules 25 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/indexed-object.js
<s> [webpack.Progress] 30% building 172/196 modules 24 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/indexed-object.js
<s> [webpack.Progress] 30% building 173/196 modules 23 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/indexed-object.js
<s> [webpack.Progress] 30% building 174/196 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/indexed-object.js
<s> [webpack.Progress] 31% building 175/196 modules 21 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/indexed-object.js
<s> [webpack.Progress] 31% building 176/196 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/indexed-object.js
<s> [webpack.Progress] 31% building 177/196 modules 19 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/indexed-object.js
<s> [webpack.Progress] 31% building 177/197 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/to-integer-or-infinity.js
<s> [webpack.Progress] 31% building 178/197 modules 19 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/to-integer-or-infinity.js
<s> [webpack.Progress] 31% building 178/198 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/airbnb-js-shims/target/es2015.js
<s> [webpack.Progress] 31% building 178/199 modules 21 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/well-known-symbol-wrapped.js
<s> [webpack.Progress] 31% building 179/199 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/well-known-symbol-wrapped.js
<s> [webpack.Progress] 31% building 180/199 modules 19 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/well-known-symbol-wrapped.js
<s> [webpack.Progress] 31% building 181/199 modules 18 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/well-known-symbol-wrapped.js
<s> [webpack.Progress] 31% building 182/199 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/well-known-symbol-wrapped.js
<s> [webpack.Progress] 31% building 183/199 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/well-known-symbol-wrapped.js
<s> [webpack.Progress] 32% building 184/199 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/well-known-symbol-wrapped.js
<s> [webpack.Progress] 32% building 185/199 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/well-known-symbol-wrapped.js
<s> [webpack.Progress] 32% building 185/200 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/has-own-property.js
<s> [webpack.Progress] 32% building 185/201 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/engine-user-agent.js
<s> [webpack.Progress] 32% building 185/202 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/use-symbol-as-uid.js
<s> [webpack.Progress] 32% building 186/202 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/use-symbol-as-uid.js
<s> [webpack.Progress] 32% building 186/203 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/native-symbol.js
<s> [webpack.Progress] 32% building 187/203 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/native-symbol.js
<s> [webpack.Progress] 32% building 188/203 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/native-symbol.js
<s> [webpack.Progress] 32% building 189/203 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/native-symbol.js
<s> [webpack.Progress] 32% building 190/203 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/native-symbol.js
<s> [webpack.Progress] 32% building 191/203 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/native-symbol.js
<s> [webpack.Progress] 33% building 192/203 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/native-symbol.js
<s> [webpack.Progress] 33% building 192/204 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/prop-types/index.js
<s> [webpack.Progress] 33% building 192/205 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/react/dist/esm/client/preview/index.js
<s> [webpack.Progress] 33% building 193/205 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/react/dist/esm/client/preview/index.js
<s> [webpack.Progress] 33% building 193/206 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addons/dist/esm/index.js
<s> [webpack.Progress] 33% building 193/207 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/es5-shim/es5-sham.js
<s> [webpack.Progress] 33% building 194/207 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/es5-shim/es5-sham.js
<s> [webpack.Progress] 33% building 195/207 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/es5-shim/es5-sham.js
<s> [webpack.Progress] 33% building 195/208 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-actions/dist/esm/preview/action.js
<s> [webpack.Progress] 33% building 195/209 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-actions/dist/esm/models/ActionDisplay.js
<s> [webpack.Progress] 33% building 196/209 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-actions/dist/esm/models/ActionDisplay.js
<s> [webpack.Progress] 33% building 196/210 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-actions/dist/esm/models/DecoratorFunction.js
<s> [webpack.Progress] 33% building 196/211 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-actions/dist/esm/models/ActionsMap.js
<s> [webpack.Progress] 33% building 196/212 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-actions/dist/esm/models/HandlerFunction.js
<s> [webpack.Progress] 33% building 196/213 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-actions/dist/esm/models/ActionOptions.js
<s> [webpack.Progress] 33% building 197/213 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-actions/dist/esm/models/ActionOptions.js
<s> [webpack.Progress] 33% building 197/214 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-actions/dist/esm/models/ActionsFunction.js
<s> [webpack.Progress] 33% building 198/214 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-actions/dist/esm/models/ActionsFunction.js
<s> [webpack.Progress] 33% building 199/214 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-actions/dist/esm/models/ActionsFunction.js
<s> [webpack.Progress] 34% building 200/214 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-actions/dist/esm/models/ActionsFunction.js
<s> [webpack.Progress] 34% building 200/215 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/components/dist/esm/index.js
<s> [webpack.Progress] 34% building 200/216 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/rawDefaultPropResolvers.js
<s> [webpack.Progress] 34% building 201/216 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/rawDefaultPropResolvers.js
<s> [webpack.Progress] 34% building 202/216 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/rawDefaultPropResolvers.js
<s> [webpack.Progress] 34% building 203/216 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/rawDefaultPropResolvers.js
<s> [webpack.Progress] 34% building 203/217 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/createPropDef.js
<s> [webpack.Progress] 34% building 203/218 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/blocks/utils.js
<s> [webpack.Progress] 34% building 203/219 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/collection.js
<s> [webpack.Progress] 34% building 203/220 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/collection-strong.js
<s> [webpack.Progress] 34% building 204/220 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/collection-strong.js
<s> [webpack.Progress] 34% building 205/220 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/collection-strong.js
<s> [webpack.Progress] 34% building 205/221 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/blocks/enhanceSource.js
<s> [webpack.Progress] 34% building 205/222 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/regexp-exec.js
<s> [webpack.Progress] 34% building 206/222 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/regexp-exec.js
<s> [webpack.Progress] 34% building 206/223 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/classof-raw.js
<s> [webpack.Progress] 34% building 206/224 modules 18 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/a-callable.js
<s> [webpack.Progress] 34% building 207/224 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/a-callable.js
<s> [webpack.Progress] 34% building 208/224 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/a-callable.js
<s> [webpack.Progress] 34% building 208/225 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/is-callable.js
<s> [webpack.Progress] 34% building 208/226 modules 18 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/classof.js
<s> [webpack.Progress] 34% building 208/227 modules 19 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-backgrounds/dist/esm/constants.js
<s> [webpack.Progress] 35% building 209/227 modules 18 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-backgrounds/dist/esm/constants.js
<s> [webpack.Progress] 35% building 209/228 modules 19 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-species-constructor.js
<s> [webpack.Progress] 35% building 210/228 modules 18 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-species-constructor.js
<s> [webpack.Progress] 35% building 211/228 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-species-constructor.js
<s> [webpack.Progress] 35% building 211/229 modules 18 active css /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-4-1!/Users/stephan/Coding/storyswap-frontend/node_modules/postcss-loader/src/index.js??postcss!/Users/stephan/Coding/storyswap-frontend/node_modules/postcss-loader/src/index.js??postcss!/Users/stephan/Coding/storyswap-frontend/src/stories/page.css 0
<s> [webpack.Progress] 35% building 212/229 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-species-constructor.js
<s> [webpack.Progress] 35% building 213/229 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-species-constructor.js
<s> [webpack.Progress] 35% building 213/230 modules 17 active css /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-4-1!/Users/stephan/Coding/storyswap-frontend/node_modules/postcss-loader/src/index.js??postcss!/Users/stephan/Coding/storyswap-frontend/node_modules/postcss-loader/src/index.js??postcss!/Users/stephan/Coding/storyswap-frontend/src/stories/header.css 0
<s> [webpack.Progress] 35% building 214/230 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-species-constructor.js
<s> [webpack.Progress] 35% building 215/230 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-species-constructor.js
<s> [webpack.Progress] 35% building 215/231 modules 16 active css /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-4-1!/Users/stephan/Coding/storyswap-frontend/node_modules/postcss-loader/src/index.js??postcss!/Users/stephan/Coding/storyswap-frontend/node_modules/postcss-loader/src/index.js??postcss!/Users/stephan/Coding/storyswap-frontend/src/stories/button.css 0
<s> [webpack.Progress] 35% building 216/231 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-species-constructor.js
<s> [webpack.Progress] 35% building 216/232 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.object.values.js
<s> [webpack.Progress] 35% building 216/233 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/babel-preset-react-app/node_modules/@babel/runtime/helpers/esm/defineProperty.js
<s> [webpack.Progress] 35% building 216/234 modules 18 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/to-length.js
<s> [webpack.Progress] 35% building 216/235 modules 19 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/to-property-key.js
<s> [webpack.Progress] 35% building 216/236 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/captions.js
<s> [webpack.Progress] 35% building 216/237 modules 21 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/componentTypes.js
<s> [webpack.Progress] 35% building 216/238 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.promise.js
<s> [webpack.Progress] 36% building 217/238 modules 21 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.promise.js
<s> [webpack.Progress] 36% building 218/238 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.promise.js
<s> [webpack.Progress] 36% building 218/239 modules 21 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/utils/index.js
<s> [webpack.Progress] 36% building 218/240 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/es5-shim/es5-shim.js
<s> [webpack.Progress] 36% building 219/240 modules 21 active /Users/stephan/Coding/storyswap-frontend/node_modules/es5-shim/es5-shim.js
<s> [webpack.Progress] 36% building 220/240 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/es5-shim/es5-shim.js
<s> [webpack.Progress] 36% building 220/241 modules 21 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-property-is-enumerable.js
<s> [webpack.Progress] 36% building 220/242 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-get-own-property-symbols.js
<s> [webpack.Progress] 36% building 220/243 modules 23 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/generateCode.js
<s> [webpack.Progress] 36% building 220/244 modules 24 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-keys.js
<s> [webpack.Progress] 36% building 220/245 modules 25 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/create-property-descriptor.js
<s> [webpack.Progress] 36% building 220/246 modules 26 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_defineProperty.js
<s> [webpack.Progress] 36% building 220/247 modules 27 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseMatches.js
<s> [webpack.Progress] 36% building 221/247 modules 26 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseMatches.js
<s> [webpack.Progress] 36% building 222/247 modules 25 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseMatches.js
<s> [webpack.Progress] 36% building 222/248 modules 26 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseFor.js
<s> [webpack.Progress] 36% building 222/249 modules 27 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-iteration.js
<s> [webpack.Progress] 36% building 222/250 modules 28 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/keys.js
<s> [webpack.Progress] 36% building 222/251 modules 29 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-get-own-property-descriptor.js
<s> [webpack.Progress] 36% building 223/251 modules 28 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-get-own-property-descriptor.js
<s> [webpack.Progress] 36% building 224/251 modules 27 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-get-own-property-descriptor.js
<s> [webpack.Progress] 37% building 225/251 modules 26 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-get-own-property-descriptor.js
<s> [webpack.Progress] 37% building 226/251 modules 25 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-get-own-property-descriptor.js
<s> [webpack.Progress] 37% building 227/251 modules 24 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-get-own-property-descriptor.js
<s> [webpack.Progress] 37% building 228/251 modules 23 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-get-own-property-descriptor.js
<s> [webpack.Progress] 37% building 229/251 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-get-own-property-descriptor.js
<s> [webpack.Progress] 37% building 230/251 modules 21 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-get-own-property-descriptor.js
<s> [webpack.Progress] 37% building 230/252 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/stable/symbol/index.js
<s> [webpack.Progress] 37% building 230/253 modules 23 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.string.split.js
<s> [webpack.Progress] 37% building 231/253 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.string.split.js
<s> [webpack.Progress] 37% building 231/254 modules 23 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/web.url.js
<s> [webpack.Progress] 37% building 232/254 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/web.url.js
<s> [webpack.Progress] 37% building 233/254 modules 21 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/web.url.js
<s> [webpack.Progress] 38% building 234/254 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/web.url.js
<s> [webpack.Progress] 38% building 235/254 modules 19 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/web.url.js
<s> [webpack.Progress] 38% building 235/255 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/ie8-dom-define.js
<s> [webpack.Progress] 38% building 236/255 modules 19 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/ie8-dom-define.js
<s> [webpack.Progress] 38% building 236/256 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.string.trim.js
<s> [webpack.Progress] 38% building 237/256 modules 19 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.string.trim.js
<s> [webpack.Progress] 38% building 238/256 modules 18 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.string.trim.js
<s> [webpack.Progress] 38% building 238/257 modules 19 active /Users/stephan/Coding/storyswap-frontend/node_modules/airbnb-js-shims/target/es2016.js
<s> [webpack.Progress] 38% building 238/258 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.array.find.js
<s> [webpack.Progress] 38% building 239/258 modules 19 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.array.find.js
<s> [webpack.Progress] 38% building 239/259 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.array.includes.js
<s> [webpack.Progress] 38% building 240/259 modules 19 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.array.includes.js
<s> [webpack.Progress] 38% building 241/259 modules 18 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.array.includes.js
<s> [webpack.Progress] 39% building 242/259 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.array.includes.js
<s> [webpack.Progress] 39% building 243/259 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.array.includes.js
<s> [webpack.Progress] 39% building 244/259 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.array.includes.js
<s> [webpack.Progress] 39% building 245/259 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.array.includes.js
<s> [webpack.Progress] 39% building 246/259 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.array.includes.js
<s> [webpack.Progress] 39% building 246/260 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/get-built-in.js
<s> [webpack.Progress] 39% building 246/261 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/own-keys.js
<s> [webpack.Progress] 39% building 247/261 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/own-keys.js
<s> [webpack.Progress] 39% building 247/262 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/property.js
<s> [webpack.Progress] 39% building 248/262 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/property.js
<s> [webpack.Progress] 39% building 249/262 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/property.js
<s> [webpack.Progress] 40% building 250/262 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/property.js
<s> [webpack.Progress] 40% building 250/263 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-is/index.js
<s> [webpack.Progress] 40% building 250/264 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/prop-types/factoryWithThrowingShims.js
<s> [webpack.Progress] 40% building 251/264 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/prop-types/factoryWithThrowingShims.js
<s> [webpack.Progress] 40% building 252/264 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/prop-types/factoryWithThrowingShims.js
<s> [webpack.Progress] 40% building 252/265 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/isHtmlTag.js
<s> [webpack.Progress] 40% building 252/266 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/identity.js
<s> [webpack.Progress] 40% building 252/267 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseMatchesProperty.js
<s> [webpack.Progress] 40% building 252/268 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isArray.js
<s> [webpack.Progress] 40% building 253/268 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isArray.js
<s> [webpack.Progress] 40% building 253/269 modules 16 active css /Users/stephan/Coding/storyswap-frontend/node_modules/react-scripts/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-4-1!/Users/stephan/Coding/storyswap-frontend/node_modules/postcss-loader/src/index.js??postcss!/Users/stephan/Coding/storyswap-frontend/node_modules/postcss-loader/src/index.js??postcss!/Users/stephan/Coding/storyswap-frontend/src/styles/index.css 0
<s> [webpack.Progress] 40% building 254/269 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isArray.js
<s> [webpack.Progress] 40% building 255/269 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isArray.js
<s> [webpack.Progress] 40% building 255/270 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addons/dist/esm/types.js
<s> [webpack.Progress] 40% building 256/270 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addons/dist/esm/types.js
<s> [webpack.Progress] 40% building 257/270 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addons/dist/esm/types.js
<s> [webpack.Progress] 40% building 258/270 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addons/dist/esm/types.js
<s> [webpack.Progress] 41% building 259/270 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addons/dist/esm/types.js
<s> [webpack.Progress] 41% building 259/271 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/react/dist/esm/client/preview/globals.js
<s> [webpack.Progress] 41% building 259/272 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/react/dist/esm/client/preview/render.js
<s> [webpack.Progress] 41% building 260/272 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/react/dist/esm/client/preview/render.js
<s> [webpack.Progress] 41% building 260/273 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-actions/dist/esm/preview/configureActions.js
<s> [webpack.Progress] 41% building 260/274 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/redefine.js
<s> [webpack.Progress] 41% building 260/275 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/lib/jsdocParser.js
<s> [webpack.Progress] 41% building 261/275 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/lib/jsdocParser.js
<s> [webpack.Progress] 41% building 261/276 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/sortProps.js
<s> [webpack.Progress] 41% building 261/277 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/createType.js
<s> [webpack.Progress] 41% building 262/277 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/createType.js
<s> [webpack.Progress] 41% building 262/278 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-actions/dist/esm/preview/withActions.js
<s> [webpack.Progress] 41% building 263/278 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-actions/dist/esm/preview/withActions.js
<s> [webpack.Progress] 41% building 263/279 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/function.prototype.name/shim.js
<s> [webpack.Progress] 41% building 264/279 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/function.prototype.name/shim.js
<s> [webpack.Progress] 41% building 265/279 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/function.prototype.name/shim.js
<s> [webpack.Progress] 41% building 266/279 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/function.prototype.name/shim.js
<s> [webpack.Progress] 42% building 267/279 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/function.prototype.name/shim.js
<s> [webpack.Progress] 42% building 268/279 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/function.prototype.name/shim.js
<s> [webpack.Progress] 42% building 269/279 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/function.prototype.name/shim.js
<s> [webpack.Progress] 42% building 269/280 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-element-to-jsx-string/node_modules/is-plain-object/dist/is-plain-object.mjs
<s> [webpack.Progress] 42% building 270/280 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-element-to-jsx-string/node_modules/is-plain-object/dist/is-plain-object.mjs
<s> [webpack.Progress] 42% building 270/281 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/fast-deep-equal/index.js
<s> [webpack.Progress] 42% building 270/282 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/defaultValues/prettyIdentifier.js
<s> [webpack.Progress] 42% building 270/283 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/internal-state.js
<s> [webpack.Progress] 42% building 271/283 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/internal-state.js
<s> [webpack.Progress] 42% building 272/283 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/internal-state.js
<s> [webpack.Progress] 42% building 272/284 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/object-assign/index.js
<s> [webpack.Progress] 42% building 272/285 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/csf/dist/index.js
<s> [webpack.Progress] 42% building 272/286 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.string.includes.js
<s> [webpack.Progress] 42% building 272/287 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/inherit-if-required.js
<s> [webpack.Progress] 42% building 273/287 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/inherit-if-required.js
<s> [webpack.Progress] 42% building 273/288 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-backgrounds/dist/esm/helpers/index.js
<s> [webpack.Progress] 42% building 273/289 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/try-to-string.js
<s> [webpack.Progress] 42% building 274/289 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/try-to-string.js
<s> [webpack.Progress] 42% building 274/290 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/regexp-unsupported-ncg.js
<s> [webpack.Progress] 42% building 274/291 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/regexp-unsupported-dot-all.js
<s> [webpack.Progress] 42% building 274/292 modules 18 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-create.js
<s> [webpack.Progress] 42% building 274/293 modules 19 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/is-array.js
<s> [webpack.Progress] 43% building 275/293 modules 18 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/is-array.js
<s> [webpack.Progress] 43% building 275/294 modules 19 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/is-constructor.js
<s> [webpack.Progress] 43% building 275/295 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/shared.js
<s> [webpack.Progress] 43% building 276/295 modules 19 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/shared.js
<s> [webpack.Progress] 43% building 276/296 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/regexp-sticky-helpers.js
<s> [webpack.Progress] 43% building 276/297 modules 21 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/set-to-string-tag.js
<s> [webpack.Progress] 43% building 277/297 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/set-to-string-tag.js
<s> [webpack.Progress] 43% building 277/298 modules 21 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/check-correctness-of-iteration.js
<s> [webpack.Progress] 43% building 277/299 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/regexp-flags.js
<s> [webpack.Progress] 43% building 277/300 modules 23 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/an-instance.js
<s> [webpack.Progress] 43% building 277/301 modules 24 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-to-array.js
<s> [webpack.Progress] 43% building 277/302 modules 25 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/iterate.js
<s> [webpack.Progress] 43% building 277/303 modules 26 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/internal-metadata.js
<s> [webpack.Progress] 43% building 277/304 modules 27 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/is-symbol.js
<s> [webpack.Progress] 43% building 277/305 modules 28 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/to-primitive.js
<s> [webpack.Progress] 43% building 278/305 modules 27 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/to-primitive.js
<s> [webpack.Progress] 43% building 278/306 modules 28 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/theming/dist/esm/index.js
<s> [webpack.Progress] 43% building 279/306 modules 27 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/theming/dist/esm/index.js
<s> [webpack.Progress] 43% building 279/307 modules 28 active /Users/stephan/Coding/storyswap-frontend/node_modules/uuid-browser/v4.js
<s> [webpack.Progress] 43% building 279/308 modules 29 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/engine-is-node.js
<s> [webpack.Progress] 43% building 279/309 modules 30 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/engine-is-browser.js
<s> [webpack.Progress] 43% building 279/310 modules 31 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/perform.js
<s> [webpack.Progress] 43% building 279/311 modules 32 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/new-promise-capability.js
<s> [webpack.Progress] 43% building 279/312 modules 33 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/utils/defaultValue.js
<s> [webpack.Progress] 43% building 279/313 modules 34 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/utils/docgenInfo.js
<s> [webpack.Progress] 43% building 280/313 modules 33 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/utils/docgenInfo.js
<s> [webpack.Progress] 43% building 280/314 modules 34 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/utils/string.js
<s> [webpack.Progress] 43% building 280/315 modules 35 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.string.starts-with.js
<s> [webpack.Progress] 43% building 280/316 modules 36 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/host-report-errors.js
<s> [webpack.Progress] 43% building 281/316 modules 35 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/host-report-errors.js
<s> [webpack.Progress] 43% building 281/317 modules 36 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/promise-resolve.js
<s> [webpack.Progress] 43% building 281/318 modules 37 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/microtask.js
<s> [webpack.Progress] 43% building 281/319 modules 38 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/task.js
<s> [webpack.Progress] 43% building 281/320 modules 39 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-is/cjs/react-is.production.min.js
<s> [webpack.Progress] 43% building 281/321 modules 40 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/species-constructor.js
<s> [webpack.Progress] 43% building 281/322 modules 41 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/enum-bug-keys.js
<s> [webpack.Progress] 43% building 281/323 modules 42 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-keys-internal.js
<s> [webpack.Progress] 43% building 282/323 modules 41 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-keys-internal.js
<s> [webpack.Progress] 43% building 282/324 modules 42 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/core-events/dist/esm/index.js
<s> [webpack.Progress] 43% building 282/325 modules 43 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_getNative.js
<s> [webpack.Progress] 43% building 282/326 modules 44 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseIsMatch.js
<s> [webpack.Progress] 43% building 283/326 modules 43 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseIsMatch.js
<s> [webpack.Progress] 44% building 284/326 modules 42 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseIsMatch.js
<s> [webpack.Progress] 44% building 285/326 modules 41 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseIsMatch.js
<s> [webpack.Progress] 44% building 286/326 modules 40 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseIsMatch.js
<s> [webpack.Progress] 44% building 287/326 modules 39 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseIsMatch.js
<s> [webpack.Progress] 44% building 287/327 modules 40 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_createBaseFor.js
<s> [webpack.Progress] 44% building 287/328 modules 41 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_arrayLikeKeys.js
<s> [webpack.Progress] 44% building 288/328 modules 40 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_arrayLikeKeys.js
<s> [webpack.Progress] 44% building 288/329 modules 41 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/function-bind-context.js
<s> [webpack.Progress] 44% building 288/330 modules 42 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isArrayLike.js
<s> [webpack.Progress] 44% building 289/330 modules 41 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isArrayLike.js
<s> [webpack.Progress] 44% building 290/330 modules 40 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isArrayLike.js
<s> [webpack.Progress] 44% building 291/330 modules 39 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isArrayLike.js
<s> [webpack.Progress] 45% building 292/330 modules 38 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isArrayLike.js
<s> [webpack.Progress] 45% building 293/330 modules 37 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isArrayLike.js
<s> [webpack.Progress] 45% building 294/330 modules 36 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isArrayLike.js
<s> [webpack.Progress] 45% building 295/330 modules 35 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isArrayLike.js
<s> [webpack.Progress] 45% building 296/330 modules 34 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isArrayLike.js
<s> [webpack.Progress] 45% building 297/330 modules 33 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isArrayLike.js
<s> [webpack.Progress] 45% building 298/330 modules 32 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isArrayLike.js
<s> [webpack.Progress] 45% building 298/331 modules 33 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-slice.js
<s> [webpack.Progress] 45% building 299/331 modules 32 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-slice.js
<s> [webpack.Progress] 46% building 300/331 modules 31 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-slice.js
<s> [webpack.Progress] 46% building 301/331 modules 30 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-slice.js
<s> [webpack.Progress] 46% building 302/331 modules 29 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-slice.js
<s> [webpack.Progress] 46% building 303/331 modules 28 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-slice.js
<s> [webpack.Progress] 46% building 304/331 modules 27 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-slice.js
<s> [webpack.Progress] 46% building 305/331 modules 26 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-slice.js
<s> [webpack.Progress] 46% building 305/332 modules 27 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/core/client.js
<s> [webpack.Progress] 46% building 306/332 modules 26 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/core/client.js
<s> [webpack.Progress] 46% building 306/333 modules 27 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/document-create-element.js
<s> [webpack.Progress] 46% building 307/333 modules 26 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/document-create-element.js
<s> [webpack.Progress] 46% building 307/334 modules 27 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/string-trim-forced.js
<s> [webpack.Progress] 46% building 308/334 modules 26 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/string-trim-forced.js
<s> [webpack.Progress] 47% building 309/334 modules 25 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/string-trim-forced.js
<s> [webpack.Progress] 47% building 310/334 modules 24 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/string-trim-forced.js
<s> [webpack.Progress] 47% building 311/334 modules 23 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/string-trim-forced.js
<s> [webpack.Progress] 47% building 312/334 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/string-trim-forced.js
<s> [webpack.Progress] 47% building 312/335 modules 23 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/add-to-unscopables.js
<s> [webpack.Progress] 47% building 313/335 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/add-to-unscopables.js
<s> [webpack.Progress] 47% building 314/335 modules 21 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/add-to-unscopables.js
<s> [webpack.Progress] 47% building 315/335 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/add-to-unscopables.js
<s> [webpack.Progress] 47% building 316/335 modules 19 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/add-to-unscopables.js
<s> [webpack.Progress] 48% building 317/335 modules 18 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/add-to-unscopables.js
<s> [webpack.Progress] 48% building 318/335 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/add-to-unscopables.js
<s> [webpack.Progress] 48% building 319/335 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/add-to-unscopables.js
<s> [webpack.Progress] 48% building 320/335 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/add-to-unscopables.js
<s> [webpack.Progress] 48% building 321/335 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/add-to-unscopables.js
<s> [webpack.Progress] 48% building 322/335 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/add-to-unscopables.js
<s> [webpack.Progress] 48% building 323/335 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/add-to-unscopables.js
<s> [webpack.Progress] 48% building 324/335 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/add-to-unscopables.js
<s> [webpack.Progress] 49% building 325/335 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/add-to-unscopables.js
<s> [webpack.Progress] 49% building 326/335 modules 9 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/add-to-unscopables.js
<s> [webpack.Progress] 49% building 326/336 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-includes.js
<s> [webpack.Progress] 49% building 326/337 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/airbnb-js-shims/target/es2017.js
<s> [webpack.Progress] 49% building 326/338 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-get-own-property-names.js
<s> [webpack.Progress] 49% building 327/338 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-get-own-property-names.js
<s> [webpack.Progress] 49% building 327/339 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseProperty.js
<s> [webpack.Progress] 49% building 328/339 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseProperty.js
<s> [webpack.Progress] 49% building 329/339 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseProperty.js
<s> [webpack.Progress] 49% building 330/339 modules 9 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseProperty.js
<s> [webpack.Progress] 49% building 330/340 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_toKey.js
<s> [webpack.Progress] 49% building 330/341 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseIsEqual.js
<s> [webpack.Progress] 49% building 331/341 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseIsEqual.js
<s> [webpack.Progress] 49% building 332/341 modules 9 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseIsEqual.js
<s> [webpack.Progress] 49% building 332/342 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_matchesStrictComparable.js
<s> [webpack.Progress] 49% building 333/342 modules 9 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_matchesStrictComparable.js
<s> [webpack.Progress] 50% building 334/342 modules 8 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_matchesStrictComparable.js
<s> [webpack.Progress] 50% building 335/342 modules 7 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_matchesStrictComparable.js
<s> [webpack.Progress] 50% building 335/343 modules 8 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_isStrictComparable.js
<s> [webpack.Progress] 50% building 335/344 modules 9 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_isKey.js
<s> [webpack.Progress] 50% building 335/345 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/prop-types/lib/ReactPropTypesSecret.js
<s> [webpack.Progress] 50% building 335/346 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/array-includes/shim.js
<s> [webpack.Progress] 50% building 336/346 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/array-includes/shim.js
<s> [webpack.Progress] 50% building 336/347 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/function-name.js
<s> [webpack.Progress] 50% building 336/348 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/channels/dist/esm/index.js
<s> [webpack.Progress] 50% building 337/348 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/channels/dist/esm/index.js
<s> [webpack.Progress] 50% building 337/349 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/inspect-source.js
<s> [webpack.Progress] 50% building 337/350 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/set-global.js
<s> [webpack.Progress] 50% building 337/351 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/generateFuncSignature.js
<s> [webpack.Progress] 50% building 337/352 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/es6-shim/es6-shim.js
<s> [webpack.Progress] 50% building 338/352 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/es6-shim/es6-shim.js
<s> [webpack.Progress] 50% building 338/353 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-actions/dist/esm/preview/actions.js
<s> [webpack.Progress] 50% building 339/353 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-actions/dist/esm/preview/actions.js
<s> [webpack.Progress] 50% building 340/353 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-actions/dist/esm/preview/actions.js
<s> [webpack.Progress] 50% building 341/353 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-actions/dist/esm/preview/actions.js
<s> [webpack.Progress] 50% building 341/354 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/function.prototype.name/polyfill.js
<s> [webpack.Progress] 51% building 342/354 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/function.prototype.name/polyfill.js
<s> [webpack.Progress] 51% building 342/355 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/defaultValues/index.js
<s> [webpack.Progress] 51% building 343/355 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/defaultValues/index.js
<s> [webpack.Progress] 51% building 343/356 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/native-weak-map.js
<s> [webpack.Progress] 51% building 344/356 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/native-weak-map.js
<s> [webpack.Progress] 51% building 344/357 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/hidden-keys.js
<s> [webpack.Progress] 51% building 345/357 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/hidden-keys.js
<s> [webpack.Progress] 51% building 345/358 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/startCase.js
<s> [webpack.Progress] 51% building 345/359 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/correct-is-regexp-logic.js
<s> [webpack.Progress] 51% building 345/360 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-set-prototype-of.js
<s> [webpack.Progress] 51% building 345/361 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/not-a-regexp.js
<s> [webpack.Progress] 51% building 346/361 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/not-a-regexp.js
<s> [webpack.Progress] 51% building 347/361 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/not-a-regexp.js
<s> [webpack.Progress] 51% building 347/362 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/shared-key.js
<s> [webpack.Progress] 51% building 348/362 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/shared-key.js
<s> [webpack.Progress] 51% building 348/363 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/is-pure.js
<s> [webpack.Progress] 51% building 348/364 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/shared-store.js
<s> [webpack.Progress] 51% building 349/364 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/shared-store.js
<s> [webpack.Progress] 52% building 350/364 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/shared-store.js
<s> [webpack.Progress] 52% building 350/365 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/html.js
<s> [webpack.Progress] 52% building 350/366 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-is-prototype-of.js
<s> [webpack.Progress] 52% building 351/366 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-is-prototype-of.js
<s> [webpack.Progress] 52% building 352/366 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-is-prototype-of.js
<s> [webpack.Progress] 52% building 352/367 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-define-properties.js
<s> [webpack.Progress] 52% building 352/368 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/iterator-close.js
<s> [webpack.Progress] 52% building 352/369 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/inspection/index.js
<s> [webpack.Progress] 52% building 352/370 modules 18 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/ordinary-to-primitive.js
<s> [webpack.Progress] 52% building 352/371 modules 19 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/freezing.js
<s> [webpack.Progress] 52% building 352/372 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/escodegen/escodegen.js
<s> [webpack.Progress] 52% building 353/372 modules 19 active /Users/stephan/Coding/storyswap-frontend/node_modules/escodegen/escodegen.js
<s> [webpack.Progress] 52% building 353/373 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/uid.js
<s> [webpack.Progress] 52% building 353/374 modules 21 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-is-extensible.js
<s> [webpack.Progress] 52% building 353/375 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-get-own-property-names-external.js
<s> [webpack.Progress] 52% building 353/376 modules 23 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/theming/dist/esm/utils.js
<s> [webpack.Progress] 52% building 353/377 modules 24 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/lib/convert/index.js
<s> [webpack.Progress] 52% building 353/378 modules 25 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/theming/dist/esm/ensure.js
<s> [webpack.Progress] 52% building 353/379 modules 26 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/theming/dist/esm/create.js
<s> [webpack.Progress] 52% building 353/380 modules 27 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/theming/dist/esm/convert.js
<s> [webpack.Progress] 52% building 353/381 modules 28 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/theming/dist/esm/global.js
<s> [webpack.Progress] 52% building 354/381 modules 27 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/theming/dist/esm/global.js
<s> [webpack.Progress] 52% building 354/382 modules 28 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/engine-is-webos-webkit.js
<s> [webpack.Progress] 52% building 354/383 modules 29 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/engine-is-ios.js
<s> [webpack.Progress] 52% building 354/384 modules 30 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/a-constructor.js
<s> [webpack.Progress] 52% building 355/384 modules 29 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/a-constructor.js
<s> [webpack.Progress] 52% building 355/385 modules 30 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/engine-is-ios-pebble.js
<s> [webpack.Progress] 52% building 355/386 modules 31 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_Stack.js
<s> [webpack.Progress] 52% building 355/387 modules 32 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseIsNative.js
<s> [webpack.Progress] 52% building 355/388 modules 33 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_getValue.js
<s> [webpack.Progress] 52% building 356/388 modules 32 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_getValue.js
<s> [webpack.Progress] 52% building 356/389 modules 33 active /Users/stephan/Coding/storyswap-frontend/node_modules/uuid-browser/lib/rng-browser.js
<s> [webpack.Progress] 52% building 356/390 modules 34 active /Users/stephan/Coding/storyswap-frontend/node_modules/uuid-browser/lib/bytesToUuid.js
<s> [webpack.Progress] 52% building 357/390 modules 33 active /Users/stephan/Coding/storyswap-frontend/node_modules/uuid-browser/lib/bytesToUuid.js
<s> [webpack.Progress] 52% building 358/390 modules 32 active /Users/stephan/Coding/storyswap-frontend/node_modules/uuid-browser/lib/bytesToUuid.js
<s> [webpack.Progress] 53% building 359/390 modules 31 active /Users/stephan/Coding/storyswap-frontend/node_modules/uuid-browser/lib/bytesToUuid.js
<s> [webpack.Progress] 53% building 359/391 modules 32 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/web.immediate.js
<s> [webpack.Progress] 53% building 360/391 modules 31 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/web.immediate.js
<s> [webpack.Progress] 53% building 361/391 modules 30 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/web.immediate.js
<s> [webpack.Progress] 53% building 361/392 modules 31 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseTimes.js
<s> [webpack.Progress] 53% building 361/393 modules 32 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isTypedArray.js
<s> [webpack.Progress] 53% building 361/394 modules 33 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isFunction.js
<s> [webpack.Progress] 53% building 362/394 modules 32 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isFunction.js
<s> [webpack.Progress] 53% building 362/395 modules 33 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isLength.js
<s> [webpack.Progress] 53% building 363/395 modules 32 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isLength.js
<s> [webpack.Progress] 53% building 364/395 modules 31 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isLength.js
<s> [webpack.Progress] 53% building 364/396 modules 32 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_isIndex.js
<s> [webpack.Progress] 53% building 364/397 modules 33 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isBuffer.js
<s> [webpack.Progress] 53% building 365/397 modules 32 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isBuffer.js
<s> [webpack.Progress] 53% building 366/397 modules 31 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isBuffer.js
<s> [webpack.Progress] 54% building 367/397 modules 30 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isBuffer.js
<s> [webpack.Progress] 54% building 368/397 modules 29 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isBuffer.js
<s> [webpack.Progress] 54% building 368/398 modules 30 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.reflect.construct.js
<s> [webpack.Progress] 54% building 369/398 modules 29 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.reflect.construct.js
<s> [webpack.Progress] 54% building 369/399 modules 30 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.object.get-prototype-of.js
<s> [webpack.Progress] 54% building 370/399 modules 29 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.object.get-prototype-of.js
<s> [webpack.Progress] 54% building 371/399 modules 28 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.object.get-prototype-of.js
<s> [webpack.Progress] 54% building 372/399 modules 27 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.object.get-prototype-of.js
<s> [webpack.Progress] 54% building 373/399 modules 26 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.object.get-prototype-of.js
<s> [webpack.Progress] 54% building 374/399 modules 25 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.object.get-prototype-of.js
<s> [webpack.Progress] 54% building 375/399 modules 24 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.object.get-prototype-of.js
<s> [webpack.Progress] 55% building 376/399 modules 23 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.object.get-prototype-of.js
<s> [webpack.Progress] 55% building 376/400 modules 24 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isArguments.js
<s> [webpack.Progress] 55% building 377/400 modules 23 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isArguments.js
<s> [webpack.Progress] 55% building 378/400 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isArguments.js
<s> [webpack.Progress] 55% building 379/400 modules 21 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isArguments.js
<s> [webpack.Progress] 55% building 380/400 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isArguments.js
<s> [webpack.Progress] 55% building 381/400 modules 19 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isArguments.js
<s> [webpack.Progress] 55% building 381/401 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/whitespaces.js
<s> [webpack.Progress] 55% building 382/401 modules 19 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/whitespaces.js
<s> [webpack.Progress] 55% building 383/401 modules 18 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/whitespaces.js
<s> [webpack.Progress] 56% building 384/401 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/whitespaces.js
<s> [webpack.Progress] 56% building 385/401 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/whitespaces.js
<s> [webpack.Progress] 56% building 386/401 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/whitespaces.js
<s> [webpack.Progress] 56% building 387/401 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/whitespaces.js
<s> [webpack.Progress] 56% building 388/401 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/whitespaces.js
<s> [webpack.Progress] 56% building 388/402 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/to-absolute-index.js
<s> [webpack.Progress] 56% building 388/403 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/theming/dist/esm/types.js
<s> [webpack.Progress] 56% building 389/403 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/theming/dist/esm/types.js
<s> [webpack.Progress] 56% building 390/403 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/theming/dist/esm/types.js
<s> [webpack.Progress] 56% building 390/404 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/airbnb-js-shims/target/es2018.js
<s> [webpack.Progress] 56% building 391/404 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/airbnb-js-shims/target/es2018.js
<s> [webpack.Progress] 57% building 392/404 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/airbnb-js-shims/target/es2018.js
<s> [webpack.Progress] 57% building 392/405 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/escodegen/package.json
<s> [webpack.Progress] 57% building 393/405 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/airbnb-js-shims/target/es2018.js
<s> [webpack.Progress] 57% building 394/405 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/airbnb-js-shims/target/es2018.js
<s> [webpack.Progress] 57% building 395/405 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/airbnb-js-shims/target/es2018.js
<s> [webpack.Progress] 57% building 395/406 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-dom/index.js
<s> [webpack.Progress] 57% building 395/407 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isSymbol.js
<s> [webpack.Progress] 57% building 396/407 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isSymbol.js
<s> [webpack.Progress] 57% building 396/408 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/timers-browserify/main.js
<s> [webpack.Progress] 57% building 397/408 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/timers-browserify/main.js
<s> [webpack.Progress] 57% building 398/408 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/timers-browserify/main.js
<s> [webpack.Progress] 57% building 398/409 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseIsEqualDeep.js
<s> [webpack.Progress] 57% building 398/410 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/process/browser.js
<s> [webpack.Progress] 57% building 399/410 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/process/browser.js
<s> [webpack.Progress] 57% building 400/410 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/process/browser.js
<s> [webpack.Progress] 57% building 400/411 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.string.bold.js
<s> [webpack.Progress] 57% building 400/412 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/core/dist/cjs/index.js
<s> [webpack.Progress] 57% building 400/413 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isObjectLike.js
<s> [webpack.Progress] 58% building 401/413 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isObjectLike.js
<s> [webpack.Progress] 58% building 401/414 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/es/symbol/index.js
<s> [webpack.Progress] 58% building 402/414 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/es/symbol/index.js
<s> [webpack.Progress] 58% building 402/415 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/isObject.js
<s> [webpack.Progress] 58% building 402/416 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/define-properties/index.js
<s> [webpack.Progress] 58% building 402/417 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/theming/dist/esm/base.js
<s> [webpack.Progress] 58% building 402/418 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/get-iterator-method.js
<s> [webpack.Progress] 58% building 402/419 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/get-iterator.js
<s> [webpack.Progress] 58% building 402/420 modules 18 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/is-array-iterator-method.js
<s> [webpack.Progress] 58% building 403/420 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/is-array-iterator-method.js
<s> [webpack.Progress] 58% building 404/420 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/is-array-iterator-method.js
<s> [webpack.Progress] 58% building 404/421 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/array-includes/polyfill.js
<s> [webpack.Progress] 58% building 404/422 modules 18 active /Users/stephan/Coding/storyswap-frontend/node_modules/functions-have-names/index.js
<s> [webpack.Progress] 58% building 404/423 modules 19 active /Users/stephan/Coding/storyswap-frontend/node_modules/doctrine/lib/doctrine.js
<s> [webpack.Progress] 58% building 405/423 modules 18 active /Users/stephan/Coding/storyswap-frontend/node_modules/doctrine/lib/doctrine.js
<s> [webpack.Progress] 58% building 405/424 modules 19 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/lib/index.js
<s> [webpack.Progress] 58% building 405/425 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/hasIn.js
<s> [webpack.Progress] 58% building 405/426 modules 21 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/get.js
<s> [webpack.Progress] 58% building 405/427 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/object.values/shim.js
<s> [webpack.Progress] 58% building 405/428 modules 23 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/web.url-search-params.js
<s> [webpack.Progress] 58% building 405/429 modules 24 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_basePropertyDeep.js
<s> [webpack.Progress] 58% building 405/430 modules 25 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/string-trim.js
<s> [webpack.Progress] 58% building 405/431 modules 26 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/string-punycode-to-ascii.js
<s> [webpack.Progress] 58% building 405/432 modules 27 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/native-url.js
<s> [webpack.Progress] 58% building 405/433 modules 28 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-from.js
<s> [webpack.Progress] 58% building 405/434 modules 29 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/advance-string-index.js
<s> [webpack.Progress] 58% building 405/435 modules 30 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/is-regexp.js
<s> [webpack.Progress] 58% building 406/435 modules 29 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/is-regexp.js
<s> [webpack.Progress] 58% building 407/435 modules 28 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/is-regexp.js
<s> [webpack.Progress] 58% building 408/435 modules 27 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/is-regexp.js
<s> [webpack.Progress] 59% building 409/435 modules 26 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/is-regexp.js
<s> [webpack.Progress] 59% building 410/435 modules 25 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/is-regexp.js
<s> [webpack.Progress] 59% building 410/436 modules 26 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseKeys.js
<s> [webpack.Progress] 59% building 411/436 modules 25 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseKeys.js
<s> [webpack.Progress] 59% building 411/437 modules 26 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_getMatchData.js
<s> [webpack.Progress] 59% building 411/438 modules 27 active /Users/stephan/Coding/storyswap-frontend/node_modules/object.getownpropertydescriptors/shim.js
<s> [webpack.Progress] 59% building 411/439 modules 28 active /Users/stephan/Coding/storyswap-frontend/node_modules/string.prototype.padend/shim.js
<s> [webpack.Progress] 59% building 412/439 modules 27 active /Users/stephan/Coding/storyswap-frontend/node_modules/string.prototype.padend/shim.js
<s> [webpack.Progress] 59% building 413/439 modules 26 active /Users/stephan/Coding/storyswap-frontend/node_modules/string.prototype.padend/shim.js
<s> [webpack.Progress] 59% building 413/440 modules 27 active /Users/stephan/Coding/storyswap-frontend/node_modules/function.prototype.name/implementation.js
<s> [webpack.Progress] 59% building 413/441 modules 28 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/set-species.js
<s> [webpack.Progress] 59% building 414/441 modules 27 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/set-species.js
<s> [webpack.Progress] 59% building 414/442 modules 28 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/defaultValues/createDefaultValue.js
<s> [webpack.Progress] 59% building 415/442 modules 27 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/defaultValues/createDefaultValue.js
<s> [webpack.Progress] 59% building 415/443 modules 28 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/defaultValues/createFromRawDefaultProp.js
<s> [webpack.Progress] 59% building 415/444 modules 29 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/redefine-all.js
<s> [webpack.Progress] 59% building 416/444 modules 28 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/redefine-all.js
<s> [webpack.Progress] 60% building 417/444 modules 27 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/redefine-all.js
<s> [webpack.Progress] 60% building 417/445 modules 28 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/native-promise-constructor.js
<s> [webpack.Progress] 60% building 418/445 modules 27 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/native-promise-constructor.js
<s> [webpack.Progress] 60% building 418/446 modules 28 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_createCompounder.js
<s> [webpack.Progress] 60% building 418/447 modules 29 active /Users/stephan/Coding/storyswap-frontend/node_modules/html-tags/index.js
<s> [webpack.Progress] 60% building 419/447 modules 28 active /Users/stephan/Coding/storyswap-frontend/node_modules/html-tags/index.js
<s> [webpack.Progress] 60% building 419/448 modules 29 active /Users/stephan/Coding/storyswap-frontend/node_modules/string.prototype.padstart/shim.js
<s> [webpack.Progress] 60% building 419/449 modules 30 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/a-possible-prototype.js
<s> [webpack.Progress] 60% building 419/450 modules 31 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/upperFirst.js
<s> [webpack.Progress] 60% building 420/450 modules 30 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/upperFirst.js
<s> [webpack.Progress] 60% building 420/451 modules 31 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/define-iterator.js
<s> [webpack.Progress] 60% building 420/452 modules 32 active /Users/stephan/Coding/storyswap-frontend/node_modules/object.entries/shim.js
<s> [webpack.Progress] 60% building 421/452 modules 31 active /Users/stephan/Coding/storyswap-frontend/node_modules/object.entries/shim.js
<s> [webpack.Progress] 60% building 422/452 modules 30 active /Users/stephan/Coding/storyswap-frontend/node_modules/object.entries/shim.js
<s> [webpack.Progress] 60% building 423/452 modules 29 active /Users/stephan/Coding/storyswap-frontend/node_modules/object.entries/shim.js
<s> [webpack.Progress] 60% building 423/453 modules 30 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/lib/utils.js
<s> [webpack.Progress] 60% building 424/453 modules 29 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/lib/utils.js
<s> [webpack.Progress] 60% building 424/454 modules 30 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/inspection/types.js
<s> [webpack.Progress] 60% building 424/455 modules 31 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/inspection/inspectValue.js
<s> [webpack.Progress] 60% building 424/456 modules 32 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-buffer-non-extensible.js
<s> [webpack.Progress] 61% building 425/456 modules 31 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-buffer-non-extensible.js
<s> [webpack.Progress] 61% building 426/456 modules 30 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-buffer-non-extensible.js
<s> [webpack.Progress] 61% building 427/456 modules 29 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-buffer-non-extensible.js
<s> [webpack.Progress] 61% building 428/456 modules 28 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-buffer-non-extensible.js
<s> [webpack.Progress] 61% building 429/456 modules 27 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-buffer-non-extensible.js
<s> [webpack.Progress] 61% building 430/456 modules 26 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-buffer-non-extensible.js
<s> [webpack.Progress] 61% building 431/456 modules 25 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-buffer-non-extensible.js
<s> [webpack.Progress] 61% building 432/456 modules 24 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-buffer-non-extensible.js
<s> [webpack.Progress] 61% building 433/456 modules 23 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-buffer-non-extensible.js
<s> [webpack.Progress] 62% building 434/456 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-buffer-non-extensible.js
<s> [webpack.Progress] 62% building 435/456 modules 21 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-buffer-non-extensible.js
<s> [webpack.Progress] 62% building 436/456 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-buffer-non-extensible.js
<s> [webpack.Progress] 62% building 437/456 modules 19 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-buffer-non-extensible.js
<s> [webpack.Progress] 62% building 438/456 modules 18 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-buffer-non-extensible.js
<s> [webpack.Progress] 62% building 439/456 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-buffer-non-extensible.js
<s> [webpack.Progress] 62% building 440/456 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/array-buffer-non-extensible.js
<s> [webpack.Progress] 62% building 440/457 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/theming/dist/esm/animation.js
<s> [webpack.Progress] 62% building 441/457 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/theming/dist/esm/animation.js
<s> [webpack.Progress] 62% building 441/458 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/@emotion/styled/dist/styled.browser.esm.js
<s> [webpack.Progress] 62% building 441/459 modules 18 active /Users/stephan/Coding/storyswap-frontend/node_modules/@emotion/is-prop-valid/dist/is-prop-valid.browser.esm.js
<s> [webpack.Progress] 62% building 441/460 modules 19 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/typeScript/createPropDef.js
<s> [webpack.Progress] 62% building 441/461 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/react-dom/cjs/react-dom.production.min.js
<s> [webpack.Progress] 62% building 441/462 modules 21 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/flow/createPropDef.js
<s> [webpack.Progress] 63% building 442/462 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/flow/createPropDef.js
<s> [webpack.Progress] 63% building 442/463 modules 21 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/components/dist/esm/Loader/Loader.js
<s> [webpack.Progress] 63% building 442/464 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_ListCache.js
<s> [webpack.Progress] 63% building 442/465 modules 23 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_toSource.js
<s> [webpack.Progress] 63% building 443/465 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_toSource.js
<s> [webpack.Progress] 63% building 444/465 modules 21 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_toSource.js
<s> [webpack.Progress] 63% building 444/466 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_stackSet.js
<s> [webpack.Progress] 63% building 444/467 modules 23 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_isMasked.js
<s> [webpack.Progress] 63% building 445/467 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_isMasked.js
<s> [webpack.Progress] 63% building 446/467 modules 21 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_isMasked.js
<s> [webpack.Progress] 63% building 447/467 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_isMasked.js
<s> [webpack.Progress] 63% building 447/468 modules 21 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/theming/dist/esm/themes/light.js
<s> [webpack.Progress] 63% building 447/469 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/theming/dist/esm/themes/dark.js
<s> [webpack.Progress] 63% building 447/470 modules 23 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_stackHas.js
<s> [webpack.Progress] 63% building 448/470 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_stackHas.js
<s> [webpack.Progress] 63% building 448/471 modules 23 active /Users/stephan/Coding/storyswap-frontend/node_modules/emotion-theming/dist/emotion-theming.browser.esm.js
<s> [webpack.Progress] 63% building 449/471 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/emotion-theming/dist/emotion-theming.browser.esm.js
<s> [webpack.Progress] 63% building 449/472 modules 23 active /Users/stephan/Coding/storyswap-frontend/node_modules/@emotion/core/dist/core.browser.esm.js
<s> [webpack.Progress] 64% building 450/472 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/@emotion/core/dist/core.browser.esm.js
<s> [webpack.Progress] 64% building 450/473 modules 23 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_stackGet.js
<s> [webpack.Progress] 64% building 450/474 modules 24 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseIsTypedArray.js
<s> [webpack.Progress] 64% building 450/475 modules 25 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_stackDelete.js
<s> [webpack.Progress] 64% building 450/476 modules 26 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseGetTag.js
<s> [webpack.Progress] 64% building 450/477 modules 27 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.string.ends-with.js
<s> [webpack.Progress] 64% building 450/478 modules 28 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/theming/dist/esm/modules/syntax.js
<s> [webpack.Progress] 64% building 451/478 modules 27 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/theming/dist/esm/modules/syntax.js
<s> [webpack.Progress] 64% building 452/478 modules 26 active /Users/stephan/Coding/storyswap-frontend/node_modules/@storybook/theming/dist/esm/modules/syntax.js
<s> [webpack.Progress] 64% building 452/479 modules 27 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_nodeUtil.js
<s> [webpack.Progress] 64% building 453/479 modules 26 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_nodeUtil.js
<s> [webpack.Progress] 64% building 453/480 modules 27 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_root.js
<s> [webpack.Progress] 64% building 453/481 modules 28 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/stubFalse.js
<s> [webpack.Progress] 64% building 453/482 modules 29 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/correct-prototype-getter.js
<s> [webpack.Progress] 64% building 453/483 modules 30 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/function-bind.js
<s> [webpack.Progress] 64% building 454/483 modules 29 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/function-bind.js
<s> [webpack.Progress] 64% building 455/483 modules 28 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/function-bind.js
<s> [webpack.Progress] 64% building 456/483 modules 27 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/function-bind.js
<s> [webpack.Progress] 64% building 456/484 modules 28 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseIsArguments.js
<s> [webpack.Progress] 64% building 456/485 modules 29 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/object-get-prototype-of.js
<s> [webpack.Progress] 64% building 456/486 modules 30 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_stackClear.js
<s> [webpack.Progress] 64% building 456/487 modules 31 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseUnary.js
<s> [webpack.Progress] 64% building 457/487 modules 30 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseUnary.js
<s> [webpack.Progress] 64% building 458/487 modules 29 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseUnary.js
<s> [webpack.Progress] 65% building 459/487 modules 28 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseUnary.js
<s> [webpack.Progress] 65% building 460/487 modules 27 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_baseUnary.js
<s> [webpack.Progress] 65% building 460/488 modules 28 active /Users/stephan/Coding/storyswap-frontend/node_modules/html-tags/html-tags.json
<s> [webpack.Progress] 65% building 461/488 modules 27 active /Users/stephan/Coding/storyswap-frontend/node_modules/html-tags/html-tags.json
<s> [webpack.Progress] 65% building 462/488 modules 26 active /Users/stephan/Coding/storyswap-frontend/node_modules/html-tags/html-tags.json
<s> [webpack.Progress] 65% building 463/488 modules 25 active /Users/stephan/Coding/storyswap-frontend/node_modules/html-tags/html-tags.json
<s> [webpack.Progress] 65% building 464/488 modules 24 active /Users/stephan/Coding/storyswap-frontend/node_modules/html-tags/html-tags.json
<s> [webpack.Progress] 65% building 465/488 modules 23 active /Users/stephan/Coding/storyswap-frontend/node_modules/html-tags/html-tags.json
<s> [webpack.Progress] 65% building 466/488 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/html-tags/html-tags.json
<s> [webpack.Progress] 66% building 467/488 modules 21 active /Users/stephan/Coding/storyswap-frontend/node_modules/html-tags/html-tags.json
<s> [webpack.Progress] 66% building 467/489 modules 22 active /Users/stephan/Coding/storyswap-frontend/node_modules/airbnb-js-shims/target/es2019.js
<s> [webpack.Progress] 66% building 468/489 modules 21 active /Users/stephan/Coding/storyswap-frontend/node_modules/airbnb-js-shims/target/es2019.js
<s> [webpack.Progress] 66% building 469/489 modules 20 active /Users/stephan/Coding/storyswap-frontend/node_modules/airbnb-js-shims/target/es2019.js
<s> [webpack.Progress] 66% building 470/489 modules 19 active /Users/stephan/Coding/storyswap-frontend/node_modules/airbnb-js-shims/target/es2019.js
<s> [webpack.Progress] 66% building 471/489 modules 18 active /Users/stephan/Coding/storyswap-frontend/node_modules/airbnb-js-shims/target/es2019.js
<s> [webpack.Progress] 66% building 472/489 modules 17 active /Users/stephan/Coding/storyswap-frontend/node_modules/airbnb-js-shims/target/es2019.js
<s> [webpack.Progress] 66% building 473/489 modules 16 active /Users/stephan/Coding/storyswap-frontend/node_modules/airbnb-js-shims/target/es2019.js
<s> [webpack.Progress] 66% building 474/489 modules 15 active /Users/stephan/Coding/storyswap-frontend/node_modules/airbnb-js-shims/target/es2019.js
<s> [webpack.Progress] 67% building 475/489 modules 14 active /Users/stephan/Coding/storyswap-frontend/node_modules/airbnb-js-shims/target/es2019.js
<s> [webpack.Progress] 67% building 476/489 modules 13 active /Users/stephan/Coding/storyswap-frontend/node_modules/airbnb-js-shims/target/es2019.js
<s> [webpack.Progress] 67% building 477/489 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/airbnb-js-shims/target/es2019.js
<s> [webpack.Progress] 67% building 478/489 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/airbnb-js-shims/target/es2019.js
<s> [webpack.Progress] 67% building 479/489 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/airbnb-js-shims/target/es2019.js
<s> [webpack.Progress] 67% building 479/490 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_equalObjects.js
<s> [webpack.Progress] 67% building 479/491 modules 12 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_getTag.js
<s> [webpack.Progress] 67% building 480/491 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_getTag.js
<s> [webpack.Progress] 67% building 481/491 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_getTag.js
<s> [webpack.Progress] 67% building 482/491 modules 9 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_getTag.js
<s> [webpack.Progress] 67% building 483/491 modules 8 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_getTag.js
<s> [webpack.Progress] 67% building 483/492 modules 9 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/string-html-forced.js
<s> [webpack.Progress] 67% building 483/493 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/create-html.js
<s> [webpack.Progress] 68% building 484/493 modules 9 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/create-html.js
<s> [webpack.Progress] 68% building 484/494 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_equalByTag.js
<s> [webpack.Progress] 68% building 485/494 modules 9 active /Users/stephan/Coding/storyswap-frontend/node_modules/lodash/_equalByTag.js
<s> [webpack.Progress] 68% building 485/495 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.reflect.to-string-tag.js
<s> [webpack.Progress] 68% building 486/495 modules 9 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.reflect.to-string-tag.js
<s> [webpack.Progress] 68% building 487/495 modules 8 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.reflect.to-string-tag.js
<s> [webpack.Progress] 68% building 487/496 modules 9 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.math.to-string-tag.js
<s> [webpack.Progress] 68% building 487/497 modules 10 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/modules/es.json.to-string-tag.js
<s> [webpack.Progress] 68% building 487/498 modules 11 active /Users/stephan/Coding/storyswap-frontend/node_modules/core-js/internals/iterators.js