-
Notifications
You must be signed in to change notification settings - Fork 6
/
build-storybook.log
2985 lines (2983 loc) · 450 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.1.7
info
info => Cleaning outputDir /var/folders/__/q2rnvb7n6l72zh79pf6pdgr00000gn/T/chromatic--2688-aY2VaW1xfzKo
(node:2700) DeprecationWarning: DLL-related CLI flags are deprecated, see:
https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#deprecated-dll-flags
(Use `node --trace-deprecation ...` to show where the warning was created)
info => Loading custom manager config
info => Building manager..
info => Loading manager config..
info => Loading presets
info Found existing addon "@storybook/addon-actions", skipping.
info => Loading custom manager config
info => Compiling manager..
info => Manager built (17 s)
info => Building preview..
info => Loading preview config..
info => Loading presets
info Found existing addon "@storybook/addon-actions", skipping.
info => Loading 1 config file in "./.storybook"
info => Loading 9 other files in "./.storybook"
info => Adding stories defined in ".storybook/main.js"
info => Using default Webpack setup
info => Compiling preview..
<s> [webpack.Progress] 0% compiling
<s> [webpack.Progress] 10% building 0/0 modules 0 active
<s> [webpack.Progress] 10% building 0/1 modules 1 active multi /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/core/dist/server/preview/globals.js /Users/leighton/Sites/github/shared-ui-react/.storybook/storybook-init-framework-entry.js /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/common/config.js-generated-other-entry.js /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/config.js-generated-other-entry.js /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-links/dist/preset/addDecorator.js-generated-other-entry.js /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/dist/preset/addDecorator.js-generated-other-entry.js /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/dist/preset/addArgs.js-generated-other-entry.js /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-backgrounds/dist/preset/addDecorator.js-generated-other-entry.js /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-backgrounds/dist/preset/addParameter.js-generated-other-entry.js /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-a11y/dist/a11yRunner.js-generated-other-entry.js /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-a11y/dist/a11yHighlight.js-generated-other-entry.js /Users/leighton/Sites/github/shared-ui-react/.storybook/preview.js-generated-config-entry.js /Users/leighton/Sites/github/shared-ui-react/.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/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-a11y/dist/a11yRunner.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 1/3 modules 2 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-a11y/dist/a11yHighlight.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 1/4 modules 3 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-links/dist/preset/addDecorator.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 1/5 modules 4 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/dist/preset/addDecorator.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 1/6 modules 5 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/dist/preset/addArgs.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 1/7 modules 6 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-backgrounds/dist/preset/addDecorator.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 1/8 modules 7 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-backgrounds/dist/preset/addParameter.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 1/9 modules 8 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/common/config.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 1/10 modules 9 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/config.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 2/10 modules 8 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/config.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 3/10 modules 7 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/config.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 4/10 modules 6 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/config.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 5/10 modules 5 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/config.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 6/10 modules 4 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/config.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 7/10 modules 3 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/config.js-generated-other-entry.js
<s> [webpack.Progress] 10% building 8/10 modules 2 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/config.js-generated-other-entry.js
<s> [webpack.Progress] 11% building 9/10 modules 1 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/config.js-generated-other-entry.js
<s> [webpack.Progress] 11% building 10/10 modules 0 active
<s> [webpack.Progress] 11% building 10/11 modules 1 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/core/dist/server/common/polyfills.js
<s> [webpack.Progress] 11% building 10/12 modules 2 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/core/dist/server/preview/globals.js
<s> [webpack.Progress] 11% building 10/13 modules 3 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-a11y/dist/a11yRunner.js
<s> [webpack.Progress] 11% building 10/14 modules 4 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-a11y/dist/a11yHighlight.js
<s> [webpack.Progress] 11% building 10/15 modules 5 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-links/dist/preset/addDecorator.js
<s> [webpack.Progress] 11% building 10/16 modules 6 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/dist/preset/addDecorator.js
<s> [webpack.Progress] 11% building 10/17 modules 7 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/dist/preset/addArgs.js
<s> [webpack.Progress] 11% building 10/18 modules 8 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-backgrounds/dist/preset/addParameter.js
<s> [webpack.Progress] 11% building 10/19 modules 9 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-backgrounds/dist/preset/addDecorator.js
<s> [webpack.Progress] 11% building 10/20 modules 10 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/common/config.js
<s> [webpack.Progress] 11% building 10/21 modules 11 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/config.js
<s> [webpack.Progress] 11% building 11/21 modules 10 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/config.js
<s> [webpack.Progress] 11% building 12/21 modules 9 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/config.js
<s> [webpack.Progress] 11% building 13/21 modules 8 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/config.js
<s> [webpack.Progress] 11% building 14/21 modules 7 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/config.js
<s> [webpack.Progress] 11% building 15/21 modules 6 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/config.js
<s> [webpack.Progress] 11% building 16/21 modules 5 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/config.js
<s> [webpack.Progress] 12% building 17/21 modules 4 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/config.js
<s> [webpack.Progress] 12% building 18/21 modules 3 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/config.js
<s> [webpack.Progress] 12% building 19/21 modules 2 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/config.js
<s> [webpack.Progress] 12% building 20/21 modules 1 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-backgrounds/dist/preset/addParameter.js
<s> [webpack.Progress] 12% building 21/21 modules 0 active
<s> [webpack.Progress] 12% building 21/22 modules 1 active /Users/leighton/Sites/github/shared-ui-react/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/leighton/Sites/github/shared-ui-react/.storybook/storybook-init-framework-entry.js
<s> [webpack.Progress] 12% building 21/23 modules 2 active /Users/leighton/Sites/github/shared-ui-react/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/leighton/Sites/github/shared-ui-react/.storybook/preview.js-generated-config-entry.js
<s> [webpack.Progress] 12% building 21/24 modules 3 active /Users/leighton/Sites/github/shared-ui-react/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/leighton/Sites/github/shared-ui-react/.storybook/generated-stories-entry.js
<s> [webpack.Progress] 12% building 21/25 modules 4 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-a11y/dist/constants.js
<s> [webpack.Progress] 12% building 21/26 modules 5 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-a11y/dist/highlight.js
<s> [webpack.Progress] 12% building 21/27 modules 6 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-links/dist/index.js
<s> [webpack.Progress] 12% building 21/28 modules 7 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/dist/index.js
<s> [webpack.Progress] 12% building 21/29 modules 8 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/common/enhanceArgTypes.js
<s> [webpack.Progress] 12% building 21/30 modules 9 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/extractArgTypes.js
<s> [webpack.Progress] 12% building 21/31 modules 10 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/jsxDecorator.js
<s> [webpack.Progress] 12% building 22/31 modules 9 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/jsxDecorator.js
<s> [webpack.Progress] 12% building 22/32 modules 10 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/module.js
<s> [webpack.Progress] 12% building 23/32 modules 9 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/module.js
<s> [webpack.Progress] 12% building 24/32 modules 8 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/module.js
<s> [webpack.Progress] 13% building 25/32 modules 7 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/module.js
<s> [webpack.Progress] 13% building 26/32 modules 6 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/module.js
<s> [webpack.Progress] 13% building 27/32 modules 5 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/module.js
<s> [webpack.Progress] 13% building 27/33 modules 6 active /Users/leighton/Sites/github/shared-ui-react/node_modules/regenerator-runtime/runtime.js
<s> [webpack.Progress] 13% building 28/33 modules 5 active /Users/leighton/Sites/github/shared-ui-react/node_modules/regenerator-runtime/runtime.js
<s> [webpack.Progress] 13% building 29/33 modules 4 active /Users/leighton/Sites/github/shared-ui-react/node_modules/regenerator-runtime/runtime.js
<s> [webpack.Progress] 13% building 30/33 modules 3 active /Users/leighton/Sites/github/shared-ui-react/node_modules/regenerator-runtime/runtime.js
<s> [webpack.Progress] 13% building 30/34 modules 4 active /Users/leighton/Sites/github/shared-ui-react/packages sync /^\.(?:(?:^|\/|(?:(?:(?!(?:^|\/)\.).)*?)\/)(?!\.)(?=.)[^/]*?\.stories\.js)$/
<s> [webpack.Progress] 13% building 30/35 modules 5 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.object.to-string.js
<s> [webpack.Progress] 13% building 30/36 modules 6 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.promise.js
<s> [webpack.Progress] 13% building 30/37 modules 7 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.array.concat.js
<s> [webpack.Progress] 13% building 30/38 modules 8 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.array.join.js
<s> [webpack.Progress] 13% building 30/39 modules 9 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.array.map.js
<s> [webpack.Progress] 13% building 31/39 modules 8 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.array.map.js
<s> [webpack.Progress] 13% building 32/39 modules 7 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.array.map.js
<s> [webpack.Progress] 13% building 33/39 modules 6 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.array.map.js
<s> [webpack.Progress] 14% building 34/39 modules 5 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.array.map.js
<s> [webpack.Progress] 14% building 35/39 modules 4 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.array.map.js
<s> [webpack.Progress] 14% building 36/39 modules 3 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.array.map.js
<s> [webpack.Progress] 14% building 37/39 modules 2 active /Users/leighton/Sites/github/shared-ui-react/packages sync /^\.(?:(?:^|\/|(?:(?:(?!(?:^|\/)\.).)*?)\/)(?!\.)(?=.)[^/]*?\.stories\.js)$/
<s> [webpack.Progress] 14% building 37/40 modules 3 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-links/dist/preview.js
<s> [webpack.Progress] 14% building 37/41 modules 4 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.array.slice.js
<s> [webpack.Progress] 14% building 37/42 modules 5 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.object.define-properties.js
<s> [webpack.Progress] 14% building 37/43 modules 6 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.object.freeze.js
<s> [webpack.Progress] 14% building 37/44 modules 7 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/dist/constants.js
<s> [webpack.Progress] 14% building 37/45 modules 8 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/common/normalizeArgTypes.js
<s> [webpack.Progress] 14% building 37/46 modules 9 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/shared.js
<s> [webpack.Progress] 14% building 37/47 modules 10 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/client-api/dist/index.js
<s> [webpack.Progress] 14% building 37/48 modules 11 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/client-logger/dist/index.js
<s> [webpack.Progress] 14% building 37/49 modules 12 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/extractProps.js
<s> [webpack.Progress] 14% building 38/49 modules 11 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/extractProps.js
<s> [webpack.Progress] 14% building 38/50 modules 12 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.object.assign.js
<s> [webpack.Progress] 14% building 38/51 modules 13 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.regexp.constructor.js
<s> [webpack.Progress] 14% building 38/52 modules 14 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.regexp.exec.js
<s> [webpack.Progress] 14% building 38/53 modules 15 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.regexp.to-string.js
<s> [webpack.Progress] 14% building 38/54 modules 16 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/mapValues.js
<s> [webpack.Progress] 14% building 39/54 modules 15 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/mapValues.js
<s> [webpack.Progress] 14% building 40/54 modules 14 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/mapValues.js
<s> [webpack.Progress] 14% building 41/54 modules 13 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/mapValues.js
<s> [webpack.Progress] 15% building 42/54 modules 12 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/mapValues.js
<s> [webpack.Progress] 15% building 43/54 modules 11 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/mapValues.js
<s> [webpack.Progress] 15% building 44/54 modules 10 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/mapValues.js
<s> [webpack.Progress] 15% building 45/54 modules 9 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/mapValues.js
<s> [webpack.Progress] 15% building 46/54 modules 8 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/mapValues.js
<s> [webpack.Progress] 15% building 47/54 modules 7 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/mapValues.js
<s> [webpack.Progress] 15% building 47/55 modules 8 active /Users/leighton/Sites/github/shared-ui-react/node_modules/airbnb-js-shims/index.js
<s> [webpack.Progress] 15% building 47/56 modules 9 active /Users/leighton/Sites/github/shared-ui-react/node_modules/global/window.js
<s> [webpack.Progress] 15% building 47/57 modules 10 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.string.replace.js
<s> [webpack.Progress] 15% building 47/58 modules 11 active /Users/leighton/Sites/github/shared-ui-react/node_modules/axe-core/axe.js
<s> [webpack.Progress] 15% building 48/58 modules 10 active /Users/leighton/Sites/github/shared-ui-react/node_modules/axe-core/axe.js
<s> [webpack.Progress] 15% building 49/58 modules 9 active /Users/leighton/Sites/github/shared-ui-react/node_modules/axe-core/axe.js
<s> [webpack.Progress] 16% building 50/58 modules 8 active /Users/leighton/Sites/github/shared-ui-react/node_modules/axe-core/axe.js
<s> [webpack.Progress] 16% building 51/58 modules 7 active /Users/leighton/Sites/github/shared-ui-react/node_modules/axe-core/axe.js
<s> [webpack.Progress] 16% building 52/58 modules 6 active /Users/leighton/Sites/github/shared-ui-react/node_modules/axe-core/axe.js
<s> [webpack.Progress] 16% building 52/59 modules 7 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-backgrounds/dist/decorators/index.js
<s> [webpack.Progress] 16% building 53/59 modules 6 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-backgrounds/dist/decorators/index.js
<s> [webpack.Progress] 16% building 53/60 modules 7 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/blocks/index.js
<s> [webpack.Progress] 16% building 53/61 modules 8 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addons/dist/public_api.js
<s> [webpack.Progress] 16% building 53/62 modules 9 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/core-events/dist/index.js
<s> [webpack.Progress] 16% building 53/63 modules 10 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/to-string-tag-support.js
<s> [webpack.Progress] 16% building 53/64 modules 11 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/redefine.js
<s> [webpack.Progress] 16% building 53/65 modules 12 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/object-to-string.js
<s> [webpack.Progress] 16% building 53/66 modules 13 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/export.js
<s> [webpack.Progress] 16% building 53/67 modules 14 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/is-pure.js
<s> [webpack.Progress] 16% building 53/68 modules 15 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/global.js
<s> [webpack.Progress] 16% building 53/69 modules 16 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/get-built-in.js
<s> [webpack.Progress] 16% building 53/70 modules 17 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/native-promise-constructor.js
<s> [webpack.Progress] 16% building 53/71 modules 18 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/redefine-all.js
<s> [webpack.Progress] 16% building 53/72 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/set-to-string-tag.js
<s> [webpack.Progress] 16% building 53/73 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/set-species.js
<s> [webpack.Progress] 16% building 53/74 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/is-object.js
<s> [webpack.Progress] 16% building 53/75 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/a-function.js
<s> [webpack.Progress] 16% building 53/76 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/an-instance.js
<s> [webpack.Progress] 16% building 53/77 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/inspect-source.js
<s> [webpack.Progress] 16% building 53/78 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/iterate.js
<s> [webpack.Progress] 16% building 53/79 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/engine-v8-version.js
<s> [webpack.Progress] 16% building 53/80 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/array-method-uses-to-length.js
<s> [webpack.Progress] 16% building 53/81 modules 28 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/array-method-has-species-support.js
<s> [webpack.Progress] 16% building 53/82 modules 29 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/array-iteration.js
<s> [webpack.Progress] 16% building 53/83 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/well-known-symbol.js
<s> [webpack.Progress] 16% building 53/84 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/array-species-create.js
<s> [webpack.Progress] 16% building 53/85 modules 32 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-property.js
<s> [webpack.Progress] 16% building 53/86 modules 33 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/to-length.js
<s> [webpack.Progress] 16% building 53/87 modules 34 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/to-object.js
<s> [webpack.Progress] 16% building 53/88 modules 35 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/is-array.js
<s> [webpack.Progress] 16% building 53/89 modules 36 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/fails.js
<s> [webpack.Progress] 16% building 53/90 modules 37 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/array-method-is-strict.js
<s> [webpack.Progress] 16% building 53/91 modules 38 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/to-indexed-object.js
<s> [webpack.Progress] 16% building 53/92 modules 39 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/indexed-object.js
<s> [webpack.Progress] 16% building 53/93 modules 40 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/engine-is-node.js
<s> [webpack.Progress] 16% building 54/93 modules 39 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/engine-is-node.js
<s> [webpack.Progress] 16% building 55/93 modules 38 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/engine-is-node.js
<s> [webpack.Progress] 16% building 55/94 modules 39 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/docgen/index.js
<s> [webpack.Progress] 16% building 56/94 modules 38 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/docgen/index.js
<s> [webpack.Progress] 16% building 56/95 modules 39 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/internal-metadata.js
<s> [webpack.Progress] 16% building 56/96 modules 40 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.symbol.js
<s> [webpack.Progress] 16% building 57/96 modules 39 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.symbol.js
<s> [webpack.Progress] 16% building 58/96 modules 38 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.symbol.js
<s> [webpack.Progress] 16% building 58/97 modules 39 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-links/dist/constants.js
<s> [webpack.Progress] 17% building 59/97 modules 38 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-links/dist/constants.js
<s> [webpack.Progress] 17% building 59/98 modules 39 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/client-api/dist/client_api.js
<s> [webpack.Progress] 17% building 60/98 modules 38 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/client-api/dist/client_api.js
<s> [webpack.Progress] 17% building 61/98 modules 37 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/client-api/dist/client_api.js
<s> [webpack.Progress] 17% building 61/99 modules 38 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 17% building 62/99 modules 37 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 17% building 63/99 modules 36 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 17% building 64/99 modules 35 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 17% building 65/99 modules 34 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 17% building 66/99 modules 33 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 18% building 67/99 modules 32 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 18% building 68/99 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 18% building 69/99 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 18% building 70/99 modules 29 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 18% building 71/99 modules 28 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 18% building 72/99 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 18% building 73/99 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 18% building 74/99 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 19% building 75/99 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 19% building 76/99 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 19% building 77/99 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 19% building 78/99 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 19% building 79/99 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 19% building 80/99 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 19% building 81/99 modules 18 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 19% building 82/99 modules 17 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 19% building 83/99 modules 16 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 20% building 84/99 modules 15 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 20% building 85/99 modules 14 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 20% building 86/99 modules 13 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 20% building 87/99 modules 12 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 20% building 88/99 modules 11 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 20% building 89/99 modules 10 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 20% building 90/99 modules 9 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 20% building 91/99 modules 8 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 21% building 92/99 modules 7 active /Users/leighton/Sites/github/shared-ui-react/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 21% building 92/100 modules 8 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/features/symbol/index.js
<s> [webpack.Progress] 21% building 92/101 modules 9 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/client-api/dist/inferControls.js
<s> [webpack.Progress] 21% building 93/101 modules 8 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/client-api/dist/inferControls.js
<s> [webpack.Progress] 21% building 93/102 modules 9 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/descriptors.js
<s> [webpack.Progress] 21% building 93/103 modules 10 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.array.for-each.js
<s> [webpack.Progress] 21% building 93/104 modules 11 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.date.to-string.js
<s> [webpack.Progress] 21% building 93/105 modules 12 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.function.name.js
<s> [webpack.Progress] 21% building 93/106 modules 13 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_baseAssignValue.js
<s> [webpack.Progress] 21% building 94/106 modules 12 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_baseAssignValue.js
<s> [webpack.Progress] 21% building 94/107 modules 13 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/web.dom-collections.for-each.js
<s> [webpack.Progress] 21% building 94/108 modules 14 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.string.match.js
<s> [webpack.Progress] 21% building 94/109 modules 15 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.array.reduce.js
<s> [webpack.Progress] 21% building 94/110 modules 16 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_baseIteratee.js
<s> [webpack.Progress] 21% building 94/111 modules 17 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_baseForOwn.js
<s> [webpack.Progress] 21% building 95/111 modules 16 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_baseForOwn.js
<s> [webpack.Progress] 21% building 96/111 modules 15 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_baseForOwn.js
<s> [webpack.Progress] 21% building 96/112 modules 16 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/regexp-flags.js
<s> [webpack.Progress] 21% building 96/113 modules 17 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/an-object.js
<s> [webpack.Progress] 21% building 96/114 modules 18 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/regexp-exec.js
<s> [webpack.Progress] 21% building 96/115 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/regexp-sticky-helpers.js
<s> [webpack.Progress] 21% building 96/116 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/internal-state.js
<s> [webpack.Progress] 21% building 96/117 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/is-regexp.js
<s> [webpack.Progress] 21% building 96/118 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/object-get-own-property-names.js
<s> [webpack.Progress] 21% building 96/119 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/object-define-property.js
<s> [webpack.Progress] 21% building 96/120 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/inherit-if-required.js
<s> [webpack.Progress] 21% building 96/121 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/is-forced.js
<s> [webpack.Progress] 21% building 96/122 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/object-assign.js
<s> [webpack.Progress] 21% building 97/122 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/object-assign.js
<s> [webpack.Progress] 21% building 98/122 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/object-assign.js
<s> [webpack.Progress] 21% building 99/122 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/object-assign.js
<s> [webpack.Progress] 22% building 100/122 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/object-assign.js
<s> [webpack.Progress] 22% building 100/123 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/fix-regexp-well-known-symbol-logic.js
<s> [webpack.Progress] 22% building 101/123 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/fix-regexp-well-known-symbol-logic.js
<s> [webpack.Progress] 22% building 101/124 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/typeScript/handleProp.js
<s> [webpack.Progress] 22% building 101/125 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/leighton/Sites/github/shared-ui-react/.storybook/preview.js
<s> [webpack.Progress] 22% building 101/126 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/react/index.js
<s> [webpack.Progress] 22% building 101/127 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/util-deprecate/node.js
<s> [webpack.Progress] 22% building 102/127 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/util-deprecate/node.js
<s> [webpack.Progress] 22% building 102/128 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/dist/preview/index.js
<s> [webpack.Progress] 22% building 102/129 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/dist/models/index.js
<s> [webpack.Progress] 22% building 102/130 modules 28 active /Users/leighton/Sites/github/shared-ui-react/node_modules/airbnb-js-shims/target/es5.js
<s> [webpack.Progress] 22% building 102/131 modules 29 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-backgrounds/dist/decorators/withBackground.js
<s> [webpack.Progress] 22% building 103/131 modules 28 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-backgrounds/dist/decorators/withBackground.js
<s> [webpack.Progress] 22% building 104/131 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-backgrounds/dist/decorators/withBackground.js
<s> [webpack.Progress] 22% building 105/131 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-backgrounds/dist/decorators/withBackground.js
<s> [webpack.Progress] 22% building 106/131 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-backgrounds/dist/decorators/withBackground.js
<s> [webpack.Progress] 22% building 107/131 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-backgrounds/dist/decorators/withBackground.js
<s> [webpack.Progress] 22% building 108/131 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-backgrounds/dist/decorators/withBackground.js
<s> [webpack.Progress] 23% building 109/131 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-backgrounds/dist/decorators/withBackground.js
<s> [webpack.Progress] 23% building 109/132 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/propTypes/handleProp.js
<s> [webpack.Progress] 23% building 109/133 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/index.js
<s> [webpack.Progress] 23% building 110/133 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/index.js
<s> [webpack.Progress] 23% building 111/133 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/index.js
<s> [webpack.Progress] 23% building 111/134 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addons/dist/index.js
<s> [webpack.Progress] 23% building 111/135 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addons/dist/hooks.js
<s> [webpack.Progress] 23% building 111/136 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/ts-dedent/dist/index.js
<s> [webpack.Progress] 23% building 111/137 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addons/dist/storybook-channel-mock.js
<s> [webpack.Progress] 23% building 111/138 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/classof.js
<s> [webpack.Progress] 23% building 111/139 modules 28 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/set-global.js
<s> [webpack.Progress] 23% building 111/140 modules 29 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/copy-constructor-properties.js
<s> [webpack.Progress] 23% building 111/141 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/path.js
<s> [webpack.Progress] 23% building 111/142 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-non-enumerable-property.js
<s> [webpack.Progress] 23% building 111/143 modules 32 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/object-get-own-property-descriptor.js
<s> [webpack.Progress] 23% building 111/144 modules 33 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/has.js
<s> [webpack.Progress] 23% building 111/145 modules 34 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/react/dist/client/index.js
<s> [webpack.Progress] 23% building 111/146 modules 35 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/shared-store.js
<s> [webpack.Progress] 23% building 111/147 modules 36 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/engine-user-agent.js
<s> [webpack.Progress] 23% building 111/148 modules 37 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/function-bind-context.js
<s> [webpack.Progress] 23% building 111/149 modules 38 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/use-symbol-as-uid.js
<s> [webpack.Progress] 23% building 111/150 modules 39 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/native-symbol.js
<s> [webpack.Progress] 23% building 111/151 modules 40 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/to-primitive.js
<s> [webpack.Progress] 23% building 111/152 modules 41 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/to-integer.js
<s> [webpack.Progress] 23% building 111/153 modules 42 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/classof-raw.js
<s> [webpack.Progress] 23% building 111/154 modules 43 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/require-object-coercible.js
<s> [webpack.Progress] 23% building 111/155 modules 44 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-property-descriptor.js
<s> [webpack.Progress] 23% building 112/155 modules 43 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-property-descriptor.js
<s> [webpack.Progress] 23% building 113/155 modules 42 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-property-descriptor.js
<s> [webpack.Progress] 23% building 114/155 modules 41 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-property-descriptor.js
<s> [webpack.Progress] 23% building 115/155 modules 40 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-property-descriptor.js
<s> [webpack.Progress] 23% building 116/155 modules 39 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-property-descriptor.js
<s> [webpack.Progress] 24% building 117/155 modules 38 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-property-descriptor.js
<s> [webpack.Progress] 24% building 118/155 modules 37 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-property-descriptor.js
<s> [webpack.Progress] 24% building 119/155 modules 36 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-property-descriptor.js
<s> [webpack.Progress] 24% building 120/155 modules 35 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-property-descriptor.js
<s> [webpack.Progress] 24% building 121/155 modules 34 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-property-descriptor.js
<s> [webpack.Progress] 24% building 122/155 modules 33 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-property-descriptor.js
<s> [webpack.Progress] 24% building 122/156 modules 34 active /Users/leighton/Sites/github/shared-ui-react/node_modules/timers-browserify/main.js
<s> [webpack.Progress] 24% building 122/157 modules 35 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/uid.js
<s> [webpack.Progress] 24% building 122/158 modules 36 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/docgen/types.js
<s> [webpack.Progress] 24% building 123/158 modules 35 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/docgen/types.js
<s> [webpack.Progress] 24% building 123/159 modules 36 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/docgen/extractDocgenProps.js
<s> [webpack.Progress] 24% building 123/160 modules 37 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/shared.js
<s> [webpack.Progress] 24% building 123/161 modules 38 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/iterator-close.js
<s> [webpack.Progress] 24% building 123/162 modules 39 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/get-iterator-method.js
<s> [webpack.Progress] 24% building 123/163 modules 40 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/is-array-iterator-method.js
<s> [webpack.Progress] 24% building 123/164 modules 41 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addons/dist/types.js
<s> [webpack.Progress] 24% building 123/165 modules 42 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addons/dist/make-decorator.js
<s> [webpack.Progress] 24% building 124/165 modules 41 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addons/dist/make-decorator.js
<s> [webpack.Progress] 24% building 124/166 modules 42 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/blocks/mdx.js
<s> [webpack.Progress] 24% building 124/167 modules 43 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.object.keys.js
<s> [webpack.Progress] 24% building 124/168 modules 44 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.object.get-own-property-descriptors.js
<s> [webpack.Progress] 24% building 124/169 modules 45 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.object.get-own-property-descriptor.js
<s> [webpack.Progress] 24% building 124/170 modules 46 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.object.define-property.js
<s> [webpack.Progress] 24% building 124/171 modules 47 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.array.filter.js
<s> [webpack.Progress] 25% building 125/171 modules 46 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.array.filter.js
<s> [webpack.Progress] 25% building 126/171 modules 45 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.array.filter.js
<s> [webpack.Progress] 25% building 126/172 modules 46 active /Users/leighton/Sites/github/shared-ui-react/node_modules/react-element-to-jsx-string/dist/esm/index.js
<s> [webpack.Progress] 25% building 126/173 modules 47 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/hidden-keys.js
<s> [webpack.Progress] 25% building 127/173 modules 46 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/hidden-keys.js
<s> [webpack.Progress] 25% building 128/173 modules 45 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/hidden-keys.js
<s> [webpack.Progress] 25% building 129/173 modules 44 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/hidden-keys.js
<s> [webpack.Progress] 25% building 129/174 modules 45 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/define-well-known-symbol.js
<s> [webpack.Progress] 25% building 129/175 modules 46 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/well-known-symbol-wrapped.js
<s> [webpack.Progress] 25% building 130/175 modules 45 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/well-known-symbol-wrapped.js
<s> [webpack.Progress] 25% building 130/176 modules 46 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/shared-key.js
<s> [webpack.Progress] 25% building 130/177 modules 47 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/object-property-is-enumerable.js
<s> [webpack.Progress] 25% building 131/177 modules 46 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/object-property-is-enumerable.js
<s> [webpack.Progress] 25% building 132/177 modules 45 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/object-property-is-enumerable.js
<s> [webpack.Progress] 25% building 133/177 modules 44 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/object-property-is-enumerable.js
<s> [webpack.Progress] 26% building 134/177 modules 43 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/object-property-is-enumerable.js
<s> [webpack.Progress] 26% building 135/177 modules 42 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/object-property-is-enumerable.js
<s> [webpack.Progress] 26% building 136/177 modules 41 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/object-property-is-enumerable.js
<s> [webpack.Progress] 26% building 137/177 modules 40 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/object-property-is-enumerable.js
<s> [webpack.Progress] 26% building 137/178 modules 41 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/client-api/dist/decorators.js
<s> [webpack.Progress] 26% building 138/178 modules 40 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/client-api/dist/decorators.js
<s> [webpack.Progress] 26% building 139/178 modules 39 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/client-api/dist/decorators.js
<s> [webpack.Progress] 26% building 140/178 modules 38 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/client-api/dist/decorators.js
<s> [webpack.Progress] 26% building 141/178 modules 37 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/client-api/dist/decorators.js
<s> [webpack.Progress] 27% building 142/178 modules 36 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/client-api/dist/decorators.js
<s> [webpack.Progress] 27% building 143/178 modules 35 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/client-api/dist/decorators.js
<s> [webpack.Progress] 27% building 144/178 modules 34 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/client-api/dist/decorators.js
<s> [webpack.Progress] 27% building 145/178 modules 33 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/client-api/dist/decorators.js
<s> [webpack.Progress] 27% building 146/178 modules 32 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/client-api/dist/decorators.js
<s> [webpack.Progress] 27% building 147/178 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/client-api/dist/decorators.js
<s> [webpack.Progress] 27% building 148/178 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/client-api/dist/decorators.js
<s> [webpack.Progress] 27% building 149/178 modules 29 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/client-api/dist/decorators.js
<s> [webpack.Progress] 28% building 150/178 modules 28 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/client-api/dist/decorators.js
<s> [webpack.Progress] 28% building 151/178 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/client-api/dist/decorators.js
<s> [webpack.Progress] 28% building 152/178 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/client-api/dist/decorators.js
<s> [webpack.Progress] 28% building 153/178 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/client-api/dist/decorators.js
<s> [webpack.Progress] 28% building 154/178 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/client-api/dist/decorators.js
<s> [webpack.Progress] 28% building 155/178 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/client-api/dist/decorators.js
<s> [webpack.Progress] 28% building 155/179 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/esnext.symbol.replace-all.js
<s> [webpack.Progress] 28% building 155/180 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.array.includes.js
<s> [webpack.Progress] 28% building 156/180 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.array.includes.js
<s> [webpack.Progress] 28% building 157/180 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.array.includes.js
<s> [webpack.Progress] 28% building 157/181 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/client-api/dist/parameters.js
<s> [webpack.Progress] 28% building 158/181 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/client-api/dist/parameters.js
<s> [webpack.Progress] 29% building 159/181 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/client-api/dist/parameters.js
<s> [webpack.Progress] 29% building 160/181 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/client-api/dist/parameters.js
<s> [webpack.Progress] 29% building 161/181 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/client-api/dist/parameters.js
<s> [webpack.Progress] 29% building 161/182 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.array.is-array.js
<s> [webpack.Progress] 29% building 161/183 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/array-for-each.js
<s> [webpack.Progress] 29% building 162/183 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/array-for-each.js
<s> [webpack.Progress] 29% building 163/183 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/array-for-each.js
<s> [webpack.Progress] 29% building 163/184 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/esnext.symbol.pattern-match.js
<s> [webpack.Progress] 29% building 164/184 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/esnext.symbol.pattern-match.js
<s> [webpack.Progress] 29% building 165/184 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/esnext.symbol.pattern-match.js
<s> [webpack.Progress] 29% building 165/185 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_defineProperty.js
<s> [webpack.Progress] 29% building 166/185 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_defineProperty.js
<s> [webpack.Progress] 30% building 167/185 modules 18 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_defineProperty.js
<s> [webpack.Progress] 30% building 167/186 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/regexp-exec-abstract.js
<s> [webpack.Progress] 30% building 168/186 modules 18 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/regexp-exec-abstract.js
<s> [webpack.Progress] 30% building 168/187 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/array-reduce.js
<s> [webpack.Progress] 30% building 169/187 modules 18 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/array-reduce.js
<s> [webpack.Progress] 30% building 170/187 modules 17 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/array-reduce.js
<s> [webpack.Progress] 30% building 170/188 modules 18 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/advance-string-index.js
<s> [webpack.Progress] 30% building 170/189 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_baseMatches.js
<s> [webpack.Progress] 30% building 170/190 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_baseFor.js
<s> [webpack.Progress] 30% building 171/190 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_baseFor.js
<s> [webpack.Progress] 30% building 172/190 modules 18 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_baseFor.js
<s> [webpack.Progress] 30% building 172/191 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/keys.js
<s> [webpack.Progress] 30% building 172/192 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/property.js
<s> [webpack.Progress] 30% building 172/193 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/identity.js
<s> [webpack.Progress] 30% building 172/194 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/isArray.js
<s> [webpack.Progress] 30% building 172/195 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_baseMatchesProperty.js
<s> [webpack.Progress] 30% building 172/196 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/dom-iterables.js
<s> [webpack.Progress] 30% building 172/197 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/esnext.symbol.observable.js
<s> [webpack.Progress] 30% building 172/198 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/esnext.symbol.dispose.js
<s> [webpack.Progress] 30% building 172/199 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/esnext.symbol.async-dispose.js
<s> [webpack.Progress] 30% building 172/200 modules 28 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/client-api/dist/hooks.js
<s> [webpack.Progress] 30% building 172/201 modules 29 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.object.get-prototype-of.js
<s> [webpack.Progress] 30% building 172/202 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.array.index-of.js
<s> [webpack.Progress] 30% building 173/202 modules 29 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.array.index-of.js
<s> [webpack.Progress] 30% building 173/203 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/object-get-own-property-symbols.js
<s> [webpack.Progress] 30% building 174/203 modules 29 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/object-get-own-property-symbols.js
<s> [webpack.Progress] 30% building 174/204 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/object-get-own-property-names-external.js
<s> [webpack.Progress] 30% building 174/205 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/object-keys.js
<s> [webpack.Progress] 30% building 174/206 modules 32 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/native-weak-map.js
<s> [webpack.Progress] 30% building 174/207 modules 33 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/ie8-dom-define.js
<s> [webpack.Progress] 30% building 174/208 modules 34 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/object-keys-internal.js
<s> [webpack.Progress] 31% building 175/208 modules 33 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/object-keys-internal.js
<s> [webpack.Progress] 31% building 175/209 modules 34 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/enum-bug-keys.js
<s> [webpack.Progress] 31% building 176/209 modules 33 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/enum-bug-keys.js
<s> [webpack.Progress] 31% building 176/210 modules 34 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/object-set-prototype-of.js
<s> [webpack.Progress] 31% building 176/211 modules 35 active /Users/leighton/Sites/github/shared-ui-react/node_modules/react/cjs/react.production.min.js
<s> [webpack.Progress] 31% building 177/211 modules 34 active /Users/leighton/Sites/github/shared-ui-react/node_modules/react/cjs/react.production.min.js
<s> [webpack.Progress] 31% building 178/211 modules 33 active /Users/leighton/Sites/github/shared-ui-react/node_modules/react/cjs/react.production.min.js
<s> [webpack.Progress] 31% building 179/211 modules 32 active /Users/leighton/Sites/github/shared-ui-react/node_modules/react/cjs/react.production.min.js
<s> [webpack.Progress] 31% building 180/211 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/react/cjs/react.production.min.js
<s> [webpack.Progress] 31% building 180/212 modules 32 active /Users/leighton/Sites/github/shared-ui-react/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/source-loader/dist/index.js??ref--10!/Users/leighton/Sites/github/shared-ui-react/packages/box/docs/box.stories.js
<s> [webpack.Progress] 31% building 181/212 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/source-loader/dist/index.js??ref--10!/Users/leighton/Sites/github/shared-ui-react/packages/box/docs/box.stories.js
<s> [webpack.Progress] 31% building 181/213 modules 32 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/freezing.js
<s> [webpack.Progress] 31% building 181/214 modules 33 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/object-create.js
<s> [webpack.Progress] 31% building 181/215 modules 34 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/dist/preview/action.js
<s> [webpack.Progress] 31% building 181/216 modules 35 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/dist/models/ActionDisplay.js
<s> [webpack.Progress] 31% building 181/217 modules 36 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-backgrounds/dist/constants.js
<s> [webpack.Progress] 31% building 182/217 modules 35 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-backgrounds/dist/constants.js
<s> [webpack.Progress] 31% building 183/217 modules 34 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-backgrounds/dist/constants.js
<s> [webpack.Progress] 32% building 184/217 modules 33 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-backgrounds/dist/constants.js
<s> [webpack.Progress] 32% building 185/217 modules 32 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-backgrounds/dist/constants.js
<s> [webpack.Progress] 32% building 185/218 modules 33 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/web.dom-collections.iterator.js
<s> [webpack.Progress] 32% building 186/218 modules 32 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/web.dom-collections.iterator.js
<s> [webpack.Progress] 32% building 187/218 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/web.dom-collections.iterator.js
<s> [webpack.Progress] 32% building 188/218 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/web.dom-collections.iterator.js
<s> [webpack.Progress] 32% building 188/219 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/util/util.js
<s> [webpack.Progress] 32% building 188/220 modules 32 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/captions.js
<s> [webpack.Progress] 32% building 189/220 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/captions.js
<s> [webpack.Progress] 32% building 190/220 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/captions.js
<s> [webpack.Progress] 32% building 191/220 modules 29 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/captions.js
<s> [webpack.Progress] 33% building 192/220 modules 28 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/captions.js
<s> [webpack.Progress] 33% building 192/221 modules 29 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.weak-map.js
<s> [webpack.Progress] 33% building 192/222 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/own-keys.js
<s> [webpack.Progress] 33% building 192/223 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.string.iterator.js
<s> [webpack.Progress] 33% building 193/223 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.string.iterator.js
<s> [webpack.Progress] 33% building 194/223 modules 29 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.string.iterator.js
<s> [webpack.Progress] 33% building 195/223 modules 28 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.string.iterator.js
<s> [webpack.Progress] 33% building 196/223 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.string.iterator.js
<s> [webpack.Progress] 33% building 197/223 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.string.iterator.js
<s> [webpack.Progress] 33% building 197/224 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.string.includes.js
<s> [webpack.Progress] 33% building 197/225 modules 28 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.set.js
<s> [webpack.Progress] 33% building 198/225 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.set.js
<s> [webpack.Progress] 33% building 198/226 modules 28 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.object.entries.js
<s> [webpack.Progress] 33% building 199/226 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.object.entries.js
<s> [webpack.Progress] 34% building 200/226 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.object.entries.js
<s> [webpack.Progress] 34% building 200/227 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.function.bind.js
<s> [webpack.Progress] 34% building 201/227 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.function.bind.js
<s> [webpack.Progress] 34% building 202/227 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.function.bind.js
<s> [webpack.Progress] 34% building 203/227 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.function.bind.js
<s> [webpack.Progress] 34% building 204/227 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.function.bind.js
<s> [webpack.Progress] 34% building 205/227 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.function.bind.js
<s> [webpack.Progress] 34% building 206/227 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.function.bind.js
<s> [webpack.Progress] 34% building 207/227 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.function.bind.js
<s> [webpack.Progress] 34% building 208/227 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.function.bind.js
<s> [webpack.Progress] 35% building 209/227 modules 18 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.function.bind.js
<s> [webpack.Progress] 35% building 210/227 modules 17 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.function.bind.js
<s> [webpack.Progress] 35% building 211/227 modules 16 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.function.bind.js
<s> [webpack.Progress] 35% building 211/228 modules 17 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.array.iterator.js
<s> [webpack.Progress] 35% building 211/229 modules 18 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.array.from.js
<s> [webpack.Progress] 35% building 211/230 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.array.every.js
<s> [webpack.Progress] 35% building 211/231 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.symbol.iterator.js
<s> [webpack.Progress] 35% building 211/232 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.symbol.description.js
<s> [webpack.Progress] 35% building 211/233 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/componentTypes.js
<s> [webpack.Progress] 35% building 211/234 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.object.values.js
<s> [webpack.Progress] 35% building 211/235 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/generateCode.js
<s> [webpack.Progress] 35% building 211/236 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/propTypes/rawDefaultPropResolvers.js
<s> [webpack.Progress] 35% building 211/237 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/isHtmlTag.js
<s> [webpack.Progress] 35% building 211/238 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/react/dist/client/preview/types-6-0.js
<s> [webpack.Progress] 35% building 211/239 modules 28 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/propTypes/sortProps.js
<s> [webpack.Progress] 35% building 211/240 modules 29 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/docgen/PropDef.js
<s> [webpack.Progress] 35% building 211/241 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/iterators.js
<s> [webpack.Progress] 35% building 211/242 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/docgen/createPropDef.js
<s> [webpack.Progress] 35% building 211/243 modules 32 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/jsdocParser.js
<s> [webpack.Progress] 35% building 211/244 modules 33 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.array.find.js
<s> [webpack.Progress] 35% building 211/245 modules 34 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/blocks/DocsContext.js
<s> [webpack.Progress] 35% building 212/245 modules 33 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/blocks/DocsContext.js
<s> [webpack.Progress] 35% building 213/245 modules 32 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/blocks/DocsContext.js
<s> [webpack.Progress] 35% building 214/245 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/blocks/DocsContext.js
<s> [webpack.Progress] 35% building 215/245 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/blocks/DocsContext.js
<s> [webpack.Progress] 35% building 216/245 modules 29 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/blocks/DocsContext.js
<s> [webpack.Progress] 36% building 217/245 modules 28 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/blocks/DocsContext.js
<s> [webpack.Progress] 36% building 218/245 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/blocks/DocsContext.js
<s> [webpack.Progress] 36% building 219/245 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/blocks/DocsContext.js
<s> [webpack.Progress] 36% building 219/246 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/html.js
<s> [webpack.Progress] 36% building 220/246 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/html.js
<s> [webpack.Progress] 36% building 221/246 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/html.js
<s> [webpack.Progress] 36% building 222/246 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/html.js
<s> [webpack.Progress] 36% building 223/246 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/html.js
<s> [webpack.Progress] 36% building 224/246 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/html.js
<s> [webpack.Progress] 37% building 225/246 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/html.js
<s> [webpack.Progress] 37% building 226/246 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/html.js
<s> [webpack.Progress] 37% building 226/247 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/react/jsx-runtime.js
<s> [webpack.Progress] 37% building 226/248 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/add-to-unscopables.js
<s> [webpack.Progress] 37% building 227/248 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/add-to-unscopables.js
<s> [webpack.Progress] 37% building 228/248 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/add-to-unscopables.js
<s> [webpack.Progress] 37% building 229/248 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/add-to-unscopables.js
<s> [webpack.Progress] 37% building 230/248 modules 18 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/add-to-unscopables.js
<s> [webpack.Progress] 37% building 231/248 modules 17 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/add-to-unscopables.js
<s> [webpack.Progress] 37% building 232/248 modules 16 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/add-to-unscopables.js
<s> [webpack.Progress] 37% building 233/248 modules 15 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/add-to-unscopables.js
<s> [webpack.Progress] 38% building 234/248 modules 14 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/add-to-unscopables.js
<s> [webpack.Progress] 38% building 235/248 modules 13 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/add-to-unscopables.js
<s> [webpack.Progress] 38% building 236/248 modules 12 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/add-to-unscopables.js
<s> [webpack.Progress] 38% building 237/248 modules 11 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/add-to-unscopables.js
<s> [webpack.Progress] 38% building 238/248 modules 10 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/add-to-unscopables.js
<s> [webpack.Progress] 38% building 239/248 modules 9 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/add-to-unscopables.js
<s> [webpack.Progress] 38% building 239/249 modules 10 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/isPlainObject.js
<s> [webpack.Progress] 38% building 240/249 modules 9 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/isPlainObject.js
<s> [webpack.Progress] 38% building 241/249 modules 8 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/isPlainObject.js
<s> [webpack.Progress] 39% building 242/249 modules 7 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/isPlainObject.js
<s> [webpack.Progress] 39% building 243/249 modules 6 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/isPlainObject.js
<s> [webpack.Progress] 39% building 243/250 modules 7 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_getNative.js
<s> [webpack.Progress] 39% building 243/251 modules 8 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/string-multibyte.js
<s> [webpack.Progress] 39% building 244/251 modules 7 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/string-multibyte.js
<s> [webpack.Progress] 39% building 244/252 modules 8 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/index.js
<s> [webpack.Progress] 39% building 244/253 modules 9 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_baseIsMatch.js
<s> [webpack.Progress] 39% building 244/254 modules 10 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_createBaseFor.js
<s> [webpack.Progress] 39% building 244/255 modules 11 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_arrayLikeKeys.js
<s> [webpack.Progress] 39% building 244/256 modules 12 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_baseProperty.js
<s> [webpack.Progress] 39% building 244/257 modules 13 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_toKey.js
<s> [webpack.Progress] 39% building 244/258 modules 14 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_isKey.js
<s> [webpack.Progress] 39% building 244/259 modules 15 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_basePropertyDeep.js
<s> [webpack.Progress] 39% building 244/260 modules 16 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/isArrayLike.js
<s> [webpack.Progress] 39% building 244/261 modules 17 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_baseIsEqual.js
<s> [webpack.Progress] 39% building 244/262 modules 18 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_matchesStrictComparable.js
<s> [webpack.Progress] 39% building 244/263 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_isStrictComparable.js
<s> [webpack.Progress] 39% building 244/264 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/hasIn.js
<s> [webpack.Progress] 39% building 244/265 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/correct-prototype-getter.js
<s> [webpack.Progress] 39% building 244/266 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/array-includes.js
<s> [webpack.Progress] 39% building 244/267 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/object-get-prototype-of.js
<s> [webpack.Progress] 39% building 244/268 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/document-create-element.js
<s> [webpack.Progress] 39% building 244/269 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/get.js
<s> [webpack.Progress] 39% building 244/270 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/a-possible-prototype.js
<s> [webpack.Progress] 39% building 244/271 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_baseKeys.js
<s> [webpack.Progress] 39% building 244/272 modules 28 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_getMatchData.js
<s> [webpack.Progress] 39% building 244/273 modules 29 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/propTypes/createType.js
<s> [webpack.Progress] 39% building 244/274 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/airbnb-js-shims/target/es2015.js
<s> [webpack.Progress] 39% building 244/275 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/dist/models/HandlerFunction.js
<s> [webpack.Progress] 39% building 244/276 modules 32 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/dist/models/DecoratorFunction.js
<s> [webpack.Progress] 39% building 245/276 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/dist/models/DecoratorFunction.js
<s> [webpack.Progress] 39% building 246/276 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/dist/models/DecoratorFunction.js
<s> [webpack.Progress] 39% building 247/276 modules 29 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/dist/models/DecoratorFunction.js
<s> [webpack.Progress] 39% building 247/277 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/es5-shim/es5-sham.js
<s> [webpack.Progress] 39% building 247/278 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/docgen/utils/index.js
<s> [webpack.Progress] 39% building 247/279 modules 32 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/dist/models/ActionsMap.js
<s> [webpack.Progress] 39% building 248/279 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/dist/models/ActionsMap.js
<s> [webpack.Progress] 39% building 248/280 modules 32 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/dist/models/ActionOptions.js
<s> [webpack.Progress] 39% building 248/281 modules 33 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/dist/preview/configureActions.js
<s> [webpack.Progress] 39% building 248/282 modules 34 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/html.js
<s> [webpack.Progress] 39% building 249/282 modules 33 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/html.js
<s> [webpack.Progress] 40% building 250/282 modules 32 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/html.js
<s> [webpack.Progress] 40% building 251/282 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/html.js
<s> [webpack.Progress] 40% building 252/282 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/html.js
<s> [webpack.Progress] 40% building 252/283 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/object-define-properties.js
<s> [webpack.Progress] 40% building 253/283 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/object-define-properties.js
<s> [webpack.Progress] 40% building 254/283 modules 29 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/object-define-properties.js
<s> [webpack.Progress] 40% building 255/283 modules 28 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/object-define-properties.js
<s> [webpack.Progress] 40% building 255/284 modules 29 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/collection.js
<s> [webpack.Progress] 40% building 255/285 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/collection-weak.js
<s> [webpack.Progress] 40% building 256/285 modules 29 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/collection-weak.js
<s> [webpack.Progress] 40% building 257/285 modules 28 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/collection-weak.js
<s> [webpack.Progress] 40% building 258/285 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/collection-weak.js
<s> [webpack.Progress] 41% building 259/285 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/collection-weak.js
<s> [webpack.Progress] 41% building 260/285 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/collection-weak.js
<s> [webpack.Progress] 41% building 261/285 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/collection-weak.js
<s> [webpack.Progress] 41% building 261/286 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/correct-is-regexp-logic.js
<s> [webpack.Progress] 41% building 262/286 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/correct-is-regexp-logic.js
<s> [webpack.Progress] 41% building 263/286 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/correct-is-regexp-logic.js
<s> [webpack.Progress] 41% building 263/287 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/object-to-array.js
<s> [webpack.Progress] 41% building 264/287 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/object-to-array.js
<s> [webpack.Progress] 41% building 264/288 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/function-bind.js
<s> [webpack.Progress] 41% building 265/288 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/function-bind.js
<s> [webpack.Progress] 41% building 266/288 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/function-bind.js
<s> [webpack.Progress] 42% building 267/288 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/function-bind.js
<s> [webpack.Progress] 42% building 268/288 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/function-bind.js
<s> [webpack.Progress] 42% building 269/288 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/function-bind.js
<s> [webpack.Progress] 42% building 269/289 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/react/cjs/react-jsx-runtime.production.min.js
<s> [webpack.Progress] 42% building 270/289 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/react/cjs/react-jsx-runtime.production.min.js
<s> [webpack.Progress] 42% building 270/290 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/define-iterator.js
<s> [webpack.Progress] 42% building 270/291 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/check-correctness-of-iteration.js
<s> [webpack.Progress] 42% building 271/291 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/check-correctness-of-iteration.js
<s> [webpack.Progress] 42% building 271/292 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/collection-strong.js
<s> [webpack.Progress] 42% building 271/293 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/array-from.js
<s> [webpack.Progress] 42% building 272/293 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/array-from.js
<s> [webpack.Progress] 42% building 272/294 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/not-a-regexp.js
<s> [webpack.Progress] 42% building 273/294 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/not-a-regexp.js
<s> [webpack.Progress] 42% building 274/294 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/not-a-regexp.js
<s> [webpack.Progress] 43% building 275/294 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/not-a-regexp.js
<s> [webpack.Progress] 43% building 275/295 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/process/browser.js
<s> [webpack.Progress] 43% building 276/295 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/process/browser.js
<s> [webpack.Progress] 43% building 277/295 modules 18 active /Users/leighton/Sites/github/shared-ui-react/node_modules/process/browser.js
<s> [webpack.Progress] 43% building 277/296 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.string.starts-with.js
<s> [webpack.Progress] 43% building 277/297 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.string.split.js
<s> [webpack.Progress] 43% building 277/298 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/es/symbol/index.js
<s> [webpack.Progress] 43% building 277/299 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/defaultValues/prettyIdentifier.js
<s> [webpack.Progress] 43% building 278/299 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/defaultValues/prettyIdentifier.js
<s> [webpack.Progress] 43% building 278/300 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/util/support/isBufferBrowser.js
<s> [webpack.Progress] 43% building 279/300 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/util/support/isBufferBrowser.js
<s> [webpack.Progress] 43% building 280/300 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/util/support/isBufferBrowser.js
<s> [webpack.Progress] 43% building 280/301 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/docgen/utils/defaultValue.js
<s> [webpack.Progress] 43% building 281/301 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/docgen/utils/defaultValue.js
<s> [webpack.Progress] 43% building 282/301 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/docgen/utils/defaultValue.js
<s> [webpack.Progress] 43% building 283/301 modules 18 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/docgen/utils/defaultValue.js
<s> [webpack.Progress] 44% building 284/301 modules 17 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/docgen/utils/defaultValue.js
<s> [webpack.Progress] 44% building 284/302 modules 18 active /Users/leighton/Sites/github/shared-ui-react/node_modules/es5-shim/es5-shim.js
<s> [webpack.Progress] 44% building 285/302 modules 17 active /Users/leighton/Sites/github/shared-ui-react/node_modules/es5-shim/es5-shim.js
<s> [webpack.Progress] 44% building 285/303 modules 18 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/html.js
<s> [webpack.Progress] 44% building 286/303 modules 17 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/html.js
<s> [webpack.Progress] 44% building 287/303 modules 16 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/html.js
<s> [webpack.Progress] 44% building 288/303 modules 15 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/html.js
<s> [webpack.Progress] 44% building 288/304 modules 16 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/csf/dist/index.js
<s> [webpack.Progress] 44% building 288/305 modules 17 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/defaultValues/index.js
<s> [webpack.Progress] 44% building 289/305 modules 16 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/defaultValues/index.js
<s> [webpack.Progress] 44% building 289/306 modules 17 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/utils.js
<s> [webpack.Progress] 44% building 290/306 modules 16 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/utils.js
<s> [webpack.Progress] 44% building 291/306 modules 15 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/utils.js
<s> [webpack.Progress] 45% building 292/306 modules 14 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/utils.js
<s> [webpack.Progress] 45% building 293/306 modules 13 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/utils.js
<s> [webpack.Progress] 45% building 294/306 modules 12 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/utils.js
<s> [webpack.Progress] 45% building 295/306 modules 11 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/utils.js
<s> [webpack.Progress] 45% building 295/307 modules 12 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/docgen/typeScript/createPropDef.js
<s> [webpack.Progress] 45% building 295/308 modules 13 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/docgen/flow/createPropDef.js
<s> [webpack.Progress] 45% building 295/309 modules 14 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_baseGetTag.js
<s> [webpack.Progress] 45% building 296/309 modules 13 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_baseGetTag.js
<s> [webpack.Progress] 45% building 297/309 modules 12 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_baseGetTag.js
<s> [webpack.Progress] 45% building 298/309 modules 11 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_baseGetTag.js
<s> [webpack.Progress] 45% building 298/310 modules 12 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/react/dist/client/preview/index.js
<s> [webpack.Progress] 45% building 298/311 modules 13 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-backgrounds/dist/helpers/index.js
<s> [webpack.Progress] 45% building 299/311 modules 12 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-backgrounds/dist/helpers/index.js
<s> [webpack.Progress] 45% building 299/312 modules 13 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_baseIsNative.js
<s> [webpack.Progress] 45% building 299/313 modules 14 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_getValue.js
<s> [webpack.Progress] 45% building 299/314 modules 15 active /Users/leighton/Sites/github/shared-ui-react/node_modules/setimmediate/setImmediate.js
<s> [webpack.Progress] 45% building 299/315 modules 16 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_Stack.js
<s> [webpack.Progress] 46% building 300/315 modules 15 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_Stack.js
<s> [webpack.Progress] 46% building 300/316 modules 16 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_baseTimes.js
<s> [webpack.Progress] 46% building 300/317 modules 17 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/isTypedArray.js
<s> [webpack.Progress] 46% building 300/318 modules 18 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/isSymbol.js
<s> [webpack.Progress] 46% building 300/319 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_baseGet.js
<s> [webpack.Progress] 46% building 300/320 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/isFunction.js
<s> [webpack.Progress] 46% building 300/321 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/isObjectLike.js
<s> [webpack.Progress] 46% building 300/322 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_baseIsEqualDeep.js
<s> [webpack.Progress] 46% building 300/323 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/isObject.js
<s> [webpack.Progress] 46% building 300/324 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_baseHasIn.js
<s> [webpack.Progress] 46% building 300/325 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_hasPath.js
<s> [webpack.Progress] 46% building 300/326 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/isLength.js
<s> [webpack.Progress] 46% building 300/327 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/to-absolute-index.js
<s> [webpack.Progress] 46% building 301/327 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/to-absolute-index.js
<s> [webpack.Progress] 46% building 301/328 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_isIndex.js
<s> [webpack.Progress] 46% building 301/329 modules 28 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/isBuffer.js
<s> [webpack.Progress] 46% building 301/330 modules 29 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/isArguments.js
<s> [webpack.Progress] 46% building 301/331 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_isPrototype.js
<s> [webpack.Progress] 46% building 301/332 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_nativeKeys.js
<s> [webpack.Progress] 46% building 301/333 modules 32 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/propTypes/generateFuncSignature.js
<s> [webpack.Progress] 46% building 302/333 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/propTypes/generateFuncSignature.js
<s> [webpack.Progress] 46% building 302/334 modules 32 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/channels/dist/index.js
<s> [webpack.Progress] 46% building 303/334 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/channels/dist/index.js
<s> [webpack.Progress] 46% building 304/334 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/channels/dist/index.js
<s> [webpack.Progress] 46% building 304/335 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/airbnb-js-shims/target/es2016.js
<s> [webpack.Progress] 46% building 305/335 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/airbnb-js-shims/target/es2016.js
<s> [webpack.Progress] 46% building 305/336 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/Badge/Badge.js
<s> [webpack.Progress] 46% building 306/336 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/Badge/Badge.js
<s> [webpack.Progress] 46% building 306/337 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/Loader/Loader.js
<s> [webpack.Progress] 46% building 306/338 modules 32 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/docgen/utils/docgenInfo.js
<s> [webpack.Progress] 46% building 307/338 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/docgen/utils/docgenInfo.js
<s> [webpack.Progress] 46% building 307/339 modules 32 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/docgen/utils/string.js
<s> [webpack.Progress] 46% building 308/339 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/docgen/utils/string.js
<s> [webpack.Progress] 47% building 309/339 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/docgen/utils/string.js
<s> [webpack.Progress] 47% building 310/339 modules 29 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/docgen/utils/string.js
<s> [webpack.Progress] 47% building 311/339 modules 28 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/docgen/utils/string.js
<s> [webpack.Progress] 47% building 311/340 modules 29 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/brand/StorybookIcon.js
<s> [webpack.Progress] 47% building 311/341 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/brand/StorybookLogo.js
<s> [webpack.Progress] 47% building 312/341 modules 29 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/brand/StorybookLogo.js
<s> [webpack.Progress] 47% building 312/342 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/theming/dist/index.js
<s> [webpack.Progress] 47% building 313/342 modules 29 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/theming/dist/index.js
<s> [webpack.Progress] 47% building 314/342 modules 28 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/theming/dist/index.js
<s> [webpack.Progress] 47% building 315/342 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/theming/dist/index.js
<s> [webpack.Progress] 47% building 315/343 modules 28 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/icon/icon.js
<s> [webpack.Progress] 47% building 316/343 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/icon/icon.js
<s> [webpack.Progress] 48% building 317/343 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/icon/icon.js
<s> [webpack.Progress] 48% building 318/343 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/icon/icon.js
<s> [webpack.Progress] 48% building 319/343 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/icon/icon.js
<s> [webpack.Progress] 48% building 320/343 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/icon/icon.js
<s> [webpack.Progress] 48% building 321/343 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/icon/icon.js
<s> [webpack.Progress] 48% building 322/343 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/icon/icon.js
<s> [webpack.Progress] 48% building 323/343 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/icon/icon.js
<s> [webpack.Progress] 48% building 324/343 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/icon/icon.js
<s> [webpack.Progress] 48% building 324/344 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/leighton/Sites/github/shared-ui-react/packages/box/lib/box.js
<s> [webpack.Progress] 49% building 325/344 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/leighton/Sites/github/shared-ui-react/packages/box/lib/box.js
<s> [webpack.Progress] 49% building 326/344 modules 18 active /Users/leighton/Sites/github/shared-ui-react/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/leighton/Sites/github/shared-ui-react/packages/box/lib/box.js
<s> [webpack.Progress] 49% building 327/344 modules 17 active /Users/leighton/Sites/github/shared-ui-react/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/leighton/Sites/github/shared-ui-react/packages/box/lib/box.js
<s> [webpack.Progress] 49% building 328/344 modules 16 active /Users/leighton/Sites/github/shared-ui-react/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/leighton/Sites/github/shared-ui-react/packages/box/lib/box.js
<s> [webpack.Progress] 49% building 329/344 modules 15 active /Users/leighton/Sites/github/shared-ui-react/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/leighton/Sites/github/shared-ui-react/packages/box/lib/box.js
<s> [webpack.Progress] 49% building 330/344 modules 14 active /Users/leighton/Sites/github/shared-ui-react/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/leighton/Sites/github/shared-ui-react/packages/box/lib/box.js
<s> [webpack.Progress] 49% building 330/345 modules 15 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/addon-panel/addon-panel.js
<s> [webpack.Progress] 49% building 330/346 modules 16 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/bar/bar.js
<s> [webpack.Progress] 49% building 330/347 modules 17 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/bar/separator.js
<s> [webpack.Progress] 49% building 330/348 modules 18 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/bar/button.js
<s> [webpack.Progress] 49% building 330/349 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/tabs/tabs.js
<s> [webpack.Progress] 49% building 330/350 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/tooltip/TooltipLinkList.js
<s> [webpack.Progress] 49% building 330/351 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/tooltip/TooltipMessage.js
<s> [webpack.Progress] 49% building 330/352 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/tooltip/TooltipNote.js
<s> [webpack.Progress] 49% building 330/353 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/tooltip/WithTooltip.js
<s> [webpack.Progress] 49% building 331/353 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/tooltip/WithTooltip.js
<s> [webpack.Progress] 49% building 331/354 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/iterators-core.js
<s> [webpack.Progress] 49% building 331/355 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-iterator-constructor.js
<s> [webpack.Progress] 49% building 331/356 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/call-with-safe-iteration-closing.js
<s> [webpack.Progress] 49% building 332/356 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/call-with-safe-iteration-closing.js
<s> [webpack.Progress] 49% building 333/356 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/call-with-safe-iteration-closing.js
<s> [webpack.Progress] 49% building 333/357 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/form/index.js
<s> [webpack.Progress] 49% building 333/358 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/Button/Button.js
<s> [webpack.Progress] 50% building 334/358 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/Button/Button.js
<s> [webpack.Progress] 50% building 334/359 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/Zoom/Zoom.js
<s> [webpack.Progress] 50% building 335/359 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/Zoom/Zoom.js
<s> [webpack.Progress] 50% building 336/359 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/Zoom/Zoom.js
<s> [webpack.Progress] 50% building 337/359 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/Zoom/Zoom.js
<s> [webpack.Progress] 50% building 337/360 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/ScrollArea/ScrollArea.js
<s> [webpack.Progress] 50% building 337/361 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/species-constructor.js
<s> [webpack.Progress] 50% building 338/361 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/species-constructor.js
<s> [webpack.Progress] 50% building 338/362 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.reflect.to-string-tag.js
<s> [webpack.Progress] 50% building 339/362 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.reflect.to-string-tag.js
<s> [webpack.Progress] 50% building 339/363 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/placeholder/placeholder.js
<s> [webpack.Progress] 50% building 339/364 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/function.prototype.name/shim.js
<s> [webpack.Progress] 50% building 339/365 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/spaced/Spaced.js
<s> [webpack.Progress] 50% building 339/366 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/ActionBar/ActionBar.js
<s> [webpack.Progress] 50% building 339/367 modules 28 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/syntaxhighlighter/syntaxhighlighter.js
<s> [webpack.Progress] 50% building 339/368 modules 29 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/typography/DocumentWrapper.js
<s> [webpack.Progress] 50% building 339/369 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.math.to-string-tag.js
<s> [webpack.Progress] 50% building 339/370 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/typography/link/link.js
<s> [webpack.Progress] 50% building 339/371 modules 32 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.json.to-string-tag.js
<s> [webpack.Progress] 50% building 339/372 modules 33 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.symbol.unscopables.js
<s> [webpack.Progress] 50% building 339/373 modules 34 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.symbol.to-string-tag.js
<s> [webpack.Progress] 50% building 340/373 modules 33 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.symbol.to-string-tag.js
<s> [webpack.Progress] 50% building 341/373 modules 32 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.symbol.to-string-tag.js
<s> [webpack.Progress] 51% building 342/373 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.symbol.to-string-tag.js
<s> [webpack.Progress] 51% building 343/373 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.symbol.to-string-tag.js
<s> [webpack.Progress] 51% building 343/374 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.symbol.to-primitive.js
<s> [webpack.Progress] 51% building 343/375 modules 32 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.symbol.split.js
<s> [webpack.Progress] 51% building 343/376 modules 33 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/startCase.js
<s> [webpack.Progress] 51% building 344/376 modules 32 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/startCase.js
<s> [webpack.Progress] 51% building 345/376 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/startCase.js
<s> [webpack.Progress] 51% building 346/376 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/startCase.js
<s> [webpack.Progress] 51% building 347/376 modules 29 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/startCase.js
<s> [webpack.Progress] 51% building 348/376 modules 28 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/startCase.js
<s> [webpack.Progress] 51% building 349/376 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/startCase.js
<s> [webpack.Progress] 52% building 350/376 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/startCase.js
<s> [webpack.Progress] 52% building 351/376 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/startCase.js
<s> [webpack.Progress] 52% building 352/376 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/startCase.js
<s> [webpack.Progress] 52% building 352/377 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/defaultValues/createDefaultValue.js
<s> [webpack.Progress] 52% building 352/378 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/defaultValues/createFromRawDefaultProp.js
<s> [webpack.Progress] 52% building 353/378 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/defaultValues/createFromRawDefaultProp.js
<s> [webpack.Progress] 52% building 354/378 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/defaultValues/createFromRawDefaultProp.js
<s> [webpack.Progress] 52% building 355/378 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/defaultValues/createFromRawDefaultProp.js
<s> [webpack.Progress] 52% building 356/378 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/defaultValues/createFromRawDefaultProp.js
<s> [webpack.Progress] 52% building 357/378 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/defaultValues/createFromRawDefaultProp.js
<s> [webpack.Progress] 52% building 357/379 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/typography/DocumentFormatting.js
<s> [webpack.Progress] 52% building 358/379 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/typography/DocumentFormatting.js
<s> [webpack.Progress] 52% building 358/380 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_Symbol.js
<s> [webpack.Progress] 53% building 359/380 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_Symbol.js
<s> [webpack.Progress] 53% building 360/380 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_Symbol.js
<s> [webpack.Progress] 53% building 360/381 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_objectToString.js
<s> [webpack.Progress] 53% building 361/381 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_objectToString.js
<s> [webpack.Progress] 53% building 361/382 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/index.js
<s> [webpack.Progress] 53% building 362/382 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/index.js
<s> [webpack.Progress] 53% building 363/382 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/index.js
<s> [webpack.Progress] 53% building 363/383 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_toSource.js
<s> [webpack.Progress] 53% building 364/383 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_toSource.js
<s> [webpack.Progress] 53% building 364/384 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_isMasked.js
<s> [webpack.Progress] 53% building 365/384 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_isMasked.js
<s> [webpack.Progress] 53% building 365/385 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/react/dist/client/preview/render.js
<s> [webpack.Progress] 53% building 365/386 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/object-assign/index.js
<s> [webpack.Progress] 53% building 365/387 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_ListCache.js
<s> [webpack.Progress] 53% building 366/387 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_ListCache.js
<s> [webpack.Progress] 54% building 367/387 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_ListCache.js
<s> [webpack.Progress] 54% building 367/388 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_stackSet.js
<s> [webpack.Progress] 54% building 367/389 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_stackHas.js
<s> [webpack.Progress] 54% building 368/389 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_stackHas.js
<s> [webpack.Progress] 54% building 369/389 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_stackHas.js
<s> [webpack.Progress] 54% building 369/390 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_stackGet.js
<s> [webpack.Progress] 54% building 369/391 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_baseIsTypedArray.js
<s> [webpack.Progress] 54% building 370/391 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_baseIsTypedArray.js
<s> [webpack.Progress] 54% building 370/392 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_nodeUtil.js
<s> [webpack.Progress] 54% building 370/393 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_castPath.js
<s> [webpack.Progress] 54% building 370/394 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_baseUnary.js
<s> [webpack.Progress] 54% building 370/395 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_stackDelete.js
<s> [webpack.Progress] 54% building 371/395 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_stackDelete.js
<s> [webpack.Progress] 54% building 372/395 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_stackDelete.js
<s> [webpack.Progress] 54% building 372/396 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_getTag.js
<s> [webpack.Progress] 54% building 372/397 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_equalObjects.js
<s> [webpack.Progress] 54% building 372/398 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_equalByTag.js
<s> [webpack.Progress] 54% building 372/399 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_equalArrays.js
<s> [webpack.Progress] 54% building 372/400 modules 28 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_stackClear.js
<s> [webpack.Progress] 54% building 372/401 modules 29 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/react/dist/client/preview/globals.js
<s> [webpack.Progress] 54% building 372/402 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_root.js
<s> [webpack.Progress] 54% building 372/403 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/stubFalse.js
<s> [webpack.Progress] 54% building 372/404 modules 32 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_baseIsArguments.js
<s> [webpack.Progress] 54% building 372/405 modules 33 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_getRawTag.js
<s> [webpack.Progress] 54% building 372/406 modules 34 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/core/node_modules/style-loader/dist/cjs.js!/Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/core/node_modules/css-loader/dist/cjs.js??ref--11-1!/Users/leighton/Sites/github/shared-ui-react/node_modules/postcss-loader/src/index.js??postcss!/Users/leighton/Sites/github/shared-ui-react/node_modules/@wpmudev/shared-ui/dist/css/shared-ui.min.css
<s> [webpack.Progress] 54% building 373/406 modules 33 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_getRawTag.js
<s> [webpack.Progress] 54% building 373/407 modules 34 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/core/node_modules/css-loader/dist/cjs.js??ref--11-1!/Users/leighton/Sites/github/shared-ui-react/node_modules/postcss-loader/src/index.js??postcss!/Users/leighton/Sites/github/shared-ui-react/node_modules/@wpmudev/shared-ui/dist/css/shared-ui.min.css
<s> [webpack.Progress] 54% building 373/408 modules 35 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_overArg.js
<s> [webpack.Progress] 54% building 373/409 modules 36 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/inspection/index.js
<s> [webpack.Progress] 54% building 373/410 modules 37 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/docgen/flow/createDefaultValue.js
<s> [webpack.Progress] 54% building 374/410 modules 36 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/docgen/flow/createDefaultValue.js
<s> [webpack.Progress] 54% building 375/410 modules 35 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/docgen/flow/createDefaultValue.js
<s> [webpack.Progress] 55% building 376/410 modules 34 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/docgen/flow/createDefaultValue.js
<s> [webpack.Progress] 55% building 377/410 modules 33 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/docgen/flow/createDefaultValue.js
<s> [webpack.Progress] 55% building 377/411 modules 34 active /Users/leighton/Sites/github/shared-ui-react/node_modules/airbnb-js-shims/target/es2017.js
<s> [webpack.Progress] 55% building 378/411 modules 33 active /Users/leighton/Sites/github/shared-ui-react/node_modules/airbnb-js-shims/target/es2017.js
<s> [webpack.Progress] 55% building 379/411 modules 32 active /Users/leighton/Sites/github/shared-ui-react/node_modules/airbnb-js-shims/target/es2017.js
<s> [webpack.Progress] 55% building 379/412 modules 33 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.string.bold.js
<s> [webpack.Progress] 55% building 379/413 modules 34 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/docgen/flow/createType.js
<s> [webpack.Progress] 55% building 379/414 modules 35 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/web.immediate.js
<s> [webpack.Progress] 55% building 379/415 modules 36 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/docgen/typeScript/createDefaultValue.js
<s> [webpack.Progress] 55% building 379/416 modules 37 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/docgen/typeScript/createType.js
<s> [webpack.Progress] 55% building 379/417 modules 38 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.symbol.species.js
<s> [webpack.Progress] 55% building 380/417 modules 37 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.symbol.species.js
<s> [webpack.Progress] 55% building 380/418 modules 38 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/convert/index.js
<s> [webpack.Progress] 55% building 381/418 modules 37 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/convert/index.js
<s> [webpack.Progress] 55% building 382/418 modules 36 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/lib/convert/index.js
<s> [webpack.Progress] 55% building 382/419 modules 37 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/node_modules/uuid/dist/esm-browser/index.js
<s> [webpack.Progress] 55% building 383/419 modules 36 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/node_modules/uuid/dist/esm-browser/index.js
<s> [webpack.Progress] 56% building 384/419 modules 35 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/node_modules/uuid/dist/esm-browser/index.js
<s> [webpack.Progress] 56% building 384/420 modules 36 active /Users/leighton/Sites/github/shared-ui-react/node_modules/doctrine/lib/doctrine.js
<s> [webpack.Progress] 56% building 385/420 modules 35 active /Users/leighton/Sites/github/shared-ui-react/node_modules/doctrine/lib/doctrine.js
<s> [webpack.Progress] 56% building 386/420 modules 34 active /Users/leighton/Sites/github/shared-ui-react/node_modules/doctrine/lib/doctrine.js
<s> [webpack.Progress] 56% building 387/420 modules 33 active /Users/leighton/Sites/github/shared-ui-react/node_modules/doctrine/lib/doctrine.js
<s> [webpack.Progress] 56% building 388/420 modules 32 active /Users/leighton/Sites/github/shared-ui-react/node_modules/doctrine/lib/doctrine.js
<s> [webpack.Progress] 56% building 389/420 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/doctrine/lib/doctrine.js
<s> [webpack.Progress] 56% building 390/420 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/doctrine/lib/doctrine.js
<s> [webpack.Progress] 56% building 391/420 modules 29 active /Users/leighton/Sites/github/shared-ui-react/node_modules/doctrine/lib/doctrine.js
<s> [webpack.Progress] 57% building 392/420 modules 28 active /Users/leighton/Sites/github/shared-ui-react/node_modules/doctrine/lib/doctrine.js
<s> [webpack.Progress] 57% building 392/421 modules 29 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/shared/animation.js
<s> [webpack.Progress] 57% building 393/421 modules 28 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/shared/animation.js
<s> [webpack.Progress] 57% building 394/421 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/shared/animation.js
<s> [webpack.Progress] 57% building 395/421 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/shared/animation.js
<s> [webpack.Progress] 57% building 396/421 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/shared/animation.js
<s> [webpack.Progress] 57% building 397/421 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/shared/animation.js
<s> [webpack.Progress] 57% building 398/421 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/shared/animation.js
<s> [webpack.Progress] 57% building 399/421 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/shared/animation.js
<s> [webpack.Progress] 57% building 400/421 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/shared/animation.js
<s> [webpack.Progress] 58% building 401/421 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/shared/animation.js
<s> [webpack.Progress] 58% building 402/421 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/shared/animation.js
<s> [webpack.Progress] 58% building 403/421 modules 18 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/shared/animation.js
<s> [webpack.Progress] 58% building 404/421 modules 17 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/shared/animation.js
<s> [webpack.Progress] 58% building 404/422 modules 18 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/icon/svg.js
<s> [webpack.Progress] 58% building 404/423 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/icon/icons.js
<s> [webpack.Progress] 58% building 405/423 modules 18 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/icon/icons.js
<s> [webpack.Progress] 58% building 405/424 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/tooltip/Tooltip.js
<s> [webpack.Progress] 58% building 406/424 modules 18 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/tooltip/Tooltip.js
<s> [webpack.Progress] 58% building 407/424 modules 17 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/tooltip/Tooltip.js
<s> [webpack.Progress] 58% building 408/424 modules 16 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/tooltip/Tooltip.js
<s> [webpack.Progress] 59% building 409/424 modules 15 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/tooltip/Tooltip.js
<s> [webpack.Progress] 59% building 409/425 modules 16 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/Zoom/ZoomIFrame.js
<s> [webpack.Progress] 59% building 409/426 modules 17 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/Zoom/ZoomElement.js
<s> [webpack.Progress] 59% building 409/427 modules 18 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.string.small.js
<s> [webpack.Progress] 59% building 409/428 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/raw-loader/dist/cjs.js!/Users/leighton/Sites/github/shared-ui-react/packages/box/docs/notes/docs-footer.md
<s> [webpack.Progress] 59% building 409/429 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/raw-loader/dist/cjs.js!/Users/leighton/Sites/github/shared-ui-react/packages/box/docs/notes/docs-section.md
<s> [webpack.Progress] 59% building 409/430 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/raw-loader/dist/cjs.js!/Users/leighton/Sites/github/shared-ui-react/packages/box/docs/notes/docs-body.md
<s> [webpack.Progress] 59% building 409/431 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/raw-loader/dist/cjs.js!/Users/leighton/Sites/github/shared-ui-react/packages/box/docs/notes/docs-header.md
<s> [webpack.Progress] 59% building 409/432 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/raw-loader/dist/cjs.js!/Users/leighton/Sites/github/shared-ui-react/packages/box/docs/notes/docs-wrapper.md
<s> [webpack.Progress] 59% building 410/432 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/raw-loader/dist/cjs.js!/Users/leighton/Sites/github/shared-ui-react/packages/box/docs/notes/docs-wrapper.md
<s> [webpack.Progress] 59% building 411/432 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/raw-loader/dist/cjs.js!/Users/leighton/Sites/github/shared-ui-react/packages/box/docs/notes/docs-wrapper.md
<s> [webpack.Progress] 59% building 411/433 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/tooltip/ListItem.js
<s> [webpack.Progress] 59% building 411/434 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.reflect.construct.js
<s> [webpack.Progress] 59% building 411/435 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.object.set-prototype-of.js
<s> [webpack.Progress] 59% building 411/436 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.object.create.js
<s> [webpack.Progress] 59% building 411/437 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/theming/dist/utils.js
<s> [webpack.Progress] 59% building 411/438 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.array.some.js
<s> [webpack.Progress] 59% building 411/439 modules 28 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/ScrollArea/ScrollAreaStyles.js
<s> [webpack.Progress] 59% building 411/440 modules 29 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/ScrollArea/OverlayScrollbarsComponent.js
<s> [webpack.Progress] 59% building 411/441 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/array-includes/shim.js
<s> [webpack.Progress] 59% building 412/441 modules 29 active /Users/leighton/Sites/github/shared-ui-react/node_modules/array-includes/shim.js
<s> [webpack.Progress] 59% building 413/441 modules 28 active /Users/leighton/Sites/github/shared-ui-react/node_modules/array-includes/shim.js
<s> [webpack.Progress] 59% building 414/441 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/array-includes/shim.js
<s> [webpack.Progress] 59% building 415/441 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/array-includes/shim.js
<s> [webpack.Progress] 59% building 416/441 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/array-includes/shim.js
<s> [webpack.Progress] 60% building 417/441 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/array-includes/shim.js
<s> [webpack.Progress] 60% building 417/442 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/syntaxhighlighter/formatter.js
<s> [webpack.Progress] 60% building 417/443 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/form/input/input.js
<s> [webpack.Progress] 60% building 417/444 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/controls/index.js
<s> [webpack.Progress] 60% building 417/445 modules 28 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/form/field/field.js
<s> [webpack.Progress] 60% building 418/445 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/form/field/field.js
<s> [webpack.Progress] 60% building 419/445 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/form/field/field.js
<s> [webpack.Progress] 60% building 420/445 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/form/field/field.js
<s> [webpack.Progress] 60% building 421/445 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/form/field/field.js
<s> [webpack.Progress] 60% building 421/446 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/web.timers.js
<s> [webpack.Progress] 60% building 421/447 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.string.trim.js
<s> [webpack.Progress] 60% building 421/448 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_createCompounder.js
<s> [webpack.Progress] 60% building 422/448 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_createCompounder.js
<s> [webpack.Progress] 60% building 423/448 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_createCompounder.js
<s> [webpack.Progress] 60% building 423/449 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/blocks/index.js
<s> [webpack.Progress] 60% building 423/450 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/defaultValues/generateArray.js
<s> [webpack.Progress] 60% building 424/450 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/defaultValues/generateArray.js
<s> [webpack.Progress] 60% building 424/451 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/core/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js
<s> [webpack.Progress] 60% building 424/452 modules 28 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/typography/shared.js
<s> [webpack.Progress] 61% building 425/452 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/typography/shared.js
<s> [webpack.Progress] 61% building 426/452 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/typography/shared.js
<s> [webpack.Progress] 61% building 427/452 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/typography/shared.js
<s> [webpack.Progress] 61% building 428/452 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/typography/shared.js
<s> [webpack.Progress] 61% building 429/452 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/typography/shared.js
<s> [webpack.Progress] 61% building 430/452 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/typography/shared.js
<s> [webpack.Progress] 61% building 431/452 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/typography/shared.js
<s> [webpack.Progress] 61% building 432/452 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/components/dist/typography/shared.js
<s> [webpack.Progress] 61% building 432/453 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/modules/es.string.ends-with.js
<s> [webpack.Progress] 61% building 432/454 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/defaultValues/generateObject.js
<s> [webpack.Progress] 61% building 433/454 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/defaultValues/generateObject.js
<s> [webpack.Progress] 62% building 434/454 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/defaultValues/generateObject.js
<s> [webpack.Progress] 62% building 435/454 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/defaultValues/generateObject.js
<s> [webpack.Progress] 62% building 436/454 modules 18 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/defaultValues/generateObject.js
<s> [webpack.Progress] 62% building 437/454 modules 17 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/defaultValues/generateObject.js
<s> [webpack.Progress] 62% building 438/454 modules 16 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/defaultValues/generateObject.js
<s> [webpack.Progress] 62% building 439/454 modules 15 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/defaultValues/generateObject.js
<s> [webpack.Progress] 62% building 440/454 modules 14 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/defaultValues/generateObject.js
<s> [webpack.Progress] 62% building 441/454 modules 13 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/defaultValues/generateObject.js
<s> [webpack.Progress] 62% building 441/455 modules 14 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/node_modules/uuid/dist/esm-browser/v1.js
<s> [webpack.Progress] 62% building 441/456 modules 15 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_coreJsData.js
<s> [webpack.Progress] 62% building 441/457 modules 16 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_listCacheClear.js
<s> [webpack.Progress] 62% building 441/458 modules 17 active /Users/leighton/Sites/github/shared-ui-react/node_modules/es6-shim/es6-shim.js
<s> [webpack.Progress] 62% building 441/459 modules 18 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_MapCache.js
<s> [webpack.Progress] 62% building 441/460 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_Map.js
<s> [webpack.Progress] 63% building 442/460 modules 18 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_Map.js
<s> [webpack.Progress] 63% building 443/460 modules 17 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_Map.js
<s> [webpack.Progress] 63% building 444/460 modules 16 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_Map.js
<s> [webpack.Progress] 63% building 444/461 modules 17 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_listCacheSet.js
<s> [webpack.Progress] 63% building 445/461 modules 16 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_listCacheSet.js
<s> [webpack.Progress] 63% building 445/462 modules 17 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_listCacheHas.js
<s> [webpack.Progress] 63% building 445/463 modules 18 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_freeGlobal.js
<s> [webpack.Progress] 63% building 445/464 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_stringToPath.js
<s> [webpack.Progress] 63% building 445/465 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_DataView.js
<s> [webpack.Progress] 63% building 445/466 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_listCacheGet.js
<s> [webpack.Progress] 63% building 445/467 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/toString.js
<s> [webpack.Progress] 63% building 445/468 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_getAllKeys.js
<s> [webpack.Progress] 63% building 445/469 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_setToArray.js
<s> [webpack.Progress] 63% building 445/470 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_SetCache.js
<s> [webpack.Progress] 63% building 445/471 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_cacheHas.js
<s> [webpack.Progress] 63% building 445/472 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_arraySome.js
<s> [webpack.Progress] 63% building 445/473 modules 28 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_mapToArray.js
<s> [webpack.Progress] 63% building 445/474 modules 29 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/eq.js
<s> [webpack.Progress] 63% building 445/475 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/lodash/_Uint8Array.js
<s> [webpack.Progress] 63% building 445/476 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/inspection/types.js
<s> [webpack.Progress] 63% building 445/477 modules 32 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-docs/dist/frameworks/react/lib/inspection/inspectValue.js
<s> [webpack.Progress] 63% building 445/478 modules 33 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/node_modules/uuid/dist/esm-browser/parse.js
<s> [webpack.Progress] 63% building 445/479 modules 34 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/node_modules/uuid/dist/esm-browser/stringify.js
<s> [webpack.Progress] 63% building 446/479 modules 33 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/node_modules/uuid/dist/esm-browser/stringify.js
<s> [webpack.Progress] 63% building 447/479 modules 32 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/node_modules/uuid/dist/esm-browser/stringify.js
<s> [webpack.Progress] 63% building 448/479 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/node_modules/uuid/dist/esm-browser/stringify.js
<s> [webpack.Progress] 63% building 448/480 modules 32 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/node_modules/uuid/dist/esm-browser/validate.js
<s> [webpack.Progress] 63% building 448/481 modules 33 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/node_modules/uuid/dist/esm-browser/version.js
<s> [webpack.Progress] 63% building 448/482 modules 34 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/node_modules/uuid/dist/esm-browser/nil.js
<s> [webpack.Progress] 63% building 449/482 modules 33 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/node_modules/uuid/dist/esm-browser/nil.js
<s> [webpack.Progress] 63% building 449/483 modules 34 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/node_modules/uuid/dist/esm-browser/v5.js
<s> [webpack.Progress] 63% building 449/484 modules 35 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/node_modules/uuid/dist/esm-browser/v4.js
<s> [webpack.Progress] 63% building 449/485 modules 36 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/node_modules/uuid/dist/esm-browser/v3.js
<s> [webpack.Progress] 64% building 450/485 modules 35 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/node_modules/uuid/dist/esm-browser/v3.js
<s> [webpack.Progress] 64% building 451/485 modules 34 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/addon-actions/node_modules/uuid/dist/esm-browser/v3.js
<s> [webpack.Progress] 64% building 451/486 modules 35 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/core/node_modules/css-loader/dist/runtime/api.js
<s> [webpack.Progress] 64% building 452/486 modules 34 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/core/node_modules/css-loader/dist/runtime/api.js
<s> [webpack.Progress] 64% building 452/487 modules 35 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/core/client.js
<s> [webpack.Progress] 64% building 453/487 modules 34 active /Users/leighton/Sites/github/shared-ui-react/node_modules/@storybook/core/client.js
<s> [webpack.Progress] 64% building 453/488 modules 35 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/string-html-forced.js
<s> [webpack.Progress] 64% building 453/489 modules 36 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/task.js
<s> [webpack.Progress] 64% building 453/490 modules 37 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-html.js
<s> [webpack.Progress] 64% building 454/490 modules 36 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-html.js
<s> [webpack.Progress] 64% building 455/490 modules 35 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-html.js
<s> [webpack.Progress] 64% building 456/490 modules 34 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-html.js
<s> [webpack.Progress] 64% building 457/490 modules 33 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-html.js
<s> [webpack.Progress] 64% building 458/490 modules 32 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-html.js
<s> [webpack.Progress] 65% building 459/490 modules 31 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-html.js
<s> [webpack.Progress] 65% building 460/490 modules 30 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-html.js
<s> [webpack.Progress] 65% building 461/490 modules 29 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-html.js
<s> [webpack.Progress] 65% building 462/490 modules 28 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-html.js
<s> [webpack.Progress] 65% building 463/490 modules 27 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-html.js
<s> [webpack.Progress] 65% building 464/490 modules 26 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-html.js
<s> [webpack.Progress] 65% building 465/490 modules 25 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-html.js
<s> [webpack.Progress] 65% building 466/490 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-html.js
<s> [webpack.Progress] 66% building 467/490 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-html.js
<s> [webpack.Progress] 66% building 468/490 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-html.js
<s> [webpack.Progress] 66% building 469/490 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-html.js
<s> [webpack.Progress] 66% building 470/490 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-html.js
<s> [webpack.Progress] 66% building 471/490 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-html.js
<s> [webpack.Progress] 66% building 472/490 modules 18 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-html.js
<s> [webpack.Progress] 66% building 473/490 modules 17 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-html.js
<s> [webpack.Progress] 66% building 474/490 modules 16 active /Users/leighton/Sites/github/shared-ui-react/node_modules/core-js/internals/create-html.js
<s> [webpack.Progress] 66% building 474/491 modules 17 active /Users/leighton/Sites/github/shared-ui-react/node_modules/doctrine/lib/utility.js
<s> [webpack.Progress] 67% building 475/491 modules 16 active /Users/leighton/Sites/github/shared-ui-react/node_modules/doctrine/lib/utility.js
<s> [webpack.Progress] 67% building 475/492 modules 17 active /Users/leighton/Sites/github/shared-ui-react/node_modules/react-syntax-highlighter/dist/cjs/create-element.js
<s> [webpack.Progress] 67% building 475/493 modules 18 active /Users/leighton/Sites/github/shared-ui-react/node_modules/react-syntax-highlighter/dist/cjs/prism-light.js
<s> [webpack.Progress] 67% building 475/494 modules 19 active /Users/leighton/Sites/github/shared-ui-react/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/typescript.js
<s> [webpack.Progress] 67% building 475/495 modules 20 active /Users/leighton/Sites/github/shared-ui-react/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/yaml.js
<s> [webpack.Progress] 67% building 475/496 modules 21 active /Users/leighton/Sites/github/shared-ui-react/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/tsx.js
<s> [webpack.Progress] 67% building 475/497 modules 22 active /Users/leighton/Sites/github/shared-ui-react/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/markup.js
<s> [webpack.Progress] 67% building 475/498 modules 23 active /Users/leighton/Sites/github/shared-ui-react/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/graphql.js
<s> [webpack.Progress] 67% building 475/499 modules 24 active /Users/leighton/Sites/github/shared-ui-react/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/markdown.js