-
Notifications
You must be signed in to change notification settings - Fork 5
/
build-storybook.log
1483 lines (1482 loc) · 206 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 v5.3.19
info
info clean outputDir..
info => Copying static files from: public
info => Copying prebuild dll's..
info => Building manager..
info => Loading manager config..
info => Loading presets
info => Compiling manager..
info => manager built (33 s)
info => Building preview..
info => Loading preview config..
info => Loading presets
info => Adding stories defined in ".storybook/main.js".
info => Loading Webpack configuration from `node_modules/react-scripts`
info => Removing existing JavaScript and TypeScript rules.
info => Modifying Create React App rules.
info => Using default 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 /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/dist/server/common/polyfills.js /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/dist/server/preview/globals.js /home/fforres/github/pokedexchallenge/.storybook/generated-entry.js
<s> [webpack.Progress] 10% building 1/1 modules 0 active
<s> [webpack.Progress] 10% building 1/2 modules 1 active /home/fforres/github/pokedexchallenge/node_modules/babel-loader/lib/index.js??ref--7-oneOf-1!/home/fforres/github/pokedexchallenge/node_modules/react-scripts/node_modules/eslint-loader/dist/cjs.js??ref--6-0!/home/fforres/github/pokedexchallenge/.storybook/generated-entry.js
<s> [webpack.Progress] 10% building 1/3 modules 2 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/dist/server/common/polyfills.js
<s> [webpack.Progress] 10% building 1/4 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/dist/server/preview/globals.js
<s> [webpack.Progress] 10% building 2/4 modules 2 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/dist/server/preview/globals.js
<s> [webpack.Progress] 10% building 3/4 modules 1 active /home/fforres/github/pokedexchallenge/node_modules/babel-loader/lib/index.js??ref--7-oneOf-1!/home/fforres/github/pokedexchallenge/node_modules/react-scripts/node_modules/eslint-loader/dist/cjs.js??ref--6-0!/home/fforres/github/pokedexchallenge/.storybook/generated-entry.js
<s> [webpack.Progress] 10% building 4/4 modules 0 active
<s> [webpack.Progress] 10% building 4/5 modules 1 active /home/fforres/github/pokedexchallenge/src sync /^\.\/(?:(?:(?!\.)(?:(?:(?!(?:|\/)\.).)*?)\/)?(?!\.)(?=.)[^/]*?\.stories\.js\/?)$/
<s> [webpack.Progress] 10% building 4/6 modules 2 active /home/fforres/github/pokedexchallenge/src sync /^\.\/(?:(?:(?!\.)(?:(?:(?!(?:|\/)\.).)*?)\/)?(?!\.)(?=.)[^/]*?\.stories\.jsx\/?)$/
<s> [webpack.Progress] 10% building 5/6 modules 1 active /home/fforres/github/pokedexchallenge/src sync /^\.\/(?:(?:(?!\.)(?:(?:(?!(?:|\/)\.).)*?)\/)?(?!\.)(?=.)[^/]*?\.stories\.jsx\/?)$/
<s> [webpack.Progress] 10% building 6/6 modules 0 active
<s> [webpack.Progress] 10% building 6/7 modules 1 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/node_modules/webpack/buildin/harmony-module.js
<s> [webpack.Progress] 10% building 6/8 modules 2 active /home/fforres/github/pokedexchallenge/node_modules/babel-loader/lib/index.js??ref--7-oneOf-1!/home/fforres/github/pokedexchallenge/node_modules/react-scripts/node_modules/eslint-loader/dist/cjs.js??ref--6-0!/home/fforres/github/pokedexchallenge/src/Componentes/Boton/botones.stories.jsx
<s> [webpack.Progress] 10% building 6/9 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/babel-loader/lib/index.js??ref--7-oneOf-1!/home/fforres/github/pokedexchallenge/node_modules/react-scripts/node_modules/eslint-loader/dist/cjs.js??ref--6-0!/home/fforres/github/pokedexchallenge/src/Componentes/Input/inputs.stories.jsx
<s> [webpack.Progress] 10% building 6/10 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/babel-loader/lib/index.js??ref--7-oneOf-1!/home/fforres/github/pokedexchallenge/node_modules/react-scripts/node_modules/eslint-loader/dist/cjs.js??ref--6-0!/home/fforres/github/pokedexchallenge/src/Paginas/Pokedex/Pokedex.stories.jsx
<s> [webpack.Progress] 10% building 6/11 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/regenerator-runtime/runtime.js
<s> [webpack.Progress] 10% building 7/11 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/regenerator-runtime/runtime.js
<s> [webpack.Progress] 10% building 8/11 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/babel-loader/lib/index.js??ref--7-oneOf-1!/home/fforres/github/pokedexchallenge/node_modules/react-scripts/node_modules/eslint-loader/dist/cjs.js??ref--6-0!/home/fforres/github/pokedexchallenge/src/Paginas/Pokedex/Pokedex.stories.jsx
<s> [webpack.Progress] 10% building 8/12 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/global/window.js
<s> [webpack.Progress] 10% building 8/13 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/airbnb-js-shims/index.js
<s> [webpack.Progress] 11% building 9/13 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/airbnb-js-shims/index.js
<s> [webpack.Progress] 11% building 10/13 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/babel-loader/lib/index.js??ref--7-oneOf-1!/home/fforres/github/pokedexchallenge/node_modules/react-scripts/node_modules/eslint-loader/dist/cjs.js??ref--6-0!/home/fforres/github/pokedexchallenge/src/Paginas/Pokedex/Pokedex.stories.jsx
<s> [webpack.Progress] 11% building 10/14 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/node_modules/webpack/buildin/global.js
<s> [webpack.Progress] 11% building 10/15 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/react/dist/client/index.js
<s> [webpack.Progress] 11% building 11/15 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/react/dist/client/index.js
<s> [webpack.Progress] 11% building 12/15 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/react/dist/client/index.js
<s> [webpack.Progress] 11% building 13/15 modules 2 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/react/dist/client/index.js
<s> [webpack.Progress] 11% building 14/15 modules 1 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/react/dist/client/index.js
<s> [webpack.Progress] 11% building 14/16 modules 2 active /home/fforres/github/pokedexchallenge/node_modules/core-js/features/symbol/index.js
<s> [webpack.Progress] 11% building 15/16 modules 1 active /home/fforres/github/pokedexchallenge/node_modules/core-js/features/symbol/index.js
<s> [webpack.Progress] 11% building 16/16 modules 0 active
<s> [webpack.Progress] 11% building 16/17 modules 1 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/node_modules/webpack/buildin/module.js
<s> [webpack.Progress] 11% building 16/18 modules 2 active /home/fforres/github/pokedexchallenge/node_modules/airbnb-js-shims/target/es5.js
<s> [webpack.Progress] 12% building 17/18 modules 1 active /home/fforres/github/pokedexchallenge/node_modules/airbnb-js-shims/target/es5.js
<s> [webpack.Progress] 12% building 18/18 modules 0 active
<s> [webpack.Progress] 12% building 18/19 modules 1 active /home/fforres/github/pokedexchallenge/node_modules/babel-loader/lib/index.js??ref--7-oneOf-1!/home/fforres/github/pokedexchallenge/node_modules/react-scripts/node_modules/eslint-loader/dist/cjs.js??ref--6-0!/home/fforres/github/pokedexchallenge/src/Paginas/Pokedex/index.jsx
<s> [webpack.Progress] 12% building 18/20 modules 2 active /home/fforres/github/pokedexchallenge/node_modules/babel-loader/lib/index.js??ref--7-oneOf-1!/home/fforres/github/pokedexchallenge/node_modules/react-scripts/node_modules/eslint-loader/dist/cjs.js??ref--6-0!/home/fforres/github/pokedexchallenge/src/Componentes/Input/index.jsx
<s> [webpack.Progress] 12% building 18/21 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/babel-loader/lib/index.js??ref--7-oneOf-1!/home/fforres/github/pokedexchallenge/node_modules/react-scripts/node_modules/eslint-loader/dist/cjs.js??ref--6-0!/home/fforres/github/pokedexchallenge/.storybook/decorators.jsx
<s> [webpack.Progress] 12% building 18/22 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/esnext.symbol.async-dispose.js
<s> [webpack.Progress] 12% building 18/23 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/esnext.symbol.dispose.js
<s> [webpack.Progress] 12% building 18/24 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/esnext.symbol.observable.js
<s> [webpack.Progress] 12% building 18/25 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/esnext.symbol.pattern-match.js
<s> [webpack.Progress] 12% building 18/26 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/esnext.symbol.replace-all.js
<s> [webpack.Progress] 12% building 18/27 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/airbnb-js-shims/target/es2015.js
<s> [webpack.Progress] 12% building 19/27 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/airbnb-js-shims/target/es2015.js
<s> [webpack.Progress] 12% building 20/27 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/airbnb-js-shims/target/es2015.js
<s> [webpack.Progress] 12% building 21/27 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/airbnb-js-shims/target/es2015.js
<s> [webpack.Progress] 12% building 22/27 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/airbnb-js-shims/target/es2015.js
<s> [webpack.Progress] 12% building 23/27 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/airbnb-js-shims/target/es2015.js
<s> [webpack.Progress] 12% building 23/28 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/react/index.js
<s> [webpack.Progress] 12% building 24/28 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/react/index.js
<s> [webpack.Progress] 12% building 24/29 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/es5-shim/es5-sham.js
<s> [webpack.Progress] 12% building 24/30 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/styled-components/dist/styled-components.browser.esm.js
<s> [webpack.Progress] 13% building 25/30 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/styled-components/dist/styled-components.browser.esm.js
<s> [webpack.Progress] 13% building 26/30 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/styled-components/dist/styled-components.browser.esm.js
<s> [webpack.Progress] 13% building 27/30 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/babel-loader/lib/index.js??ref--7-oneOf-1!/home/fforres/github/pokedexchallenge/node_modules/react-scripts/node_modules/eslint-loader/dist/cjs.js??ref--6-0!/home/fforres/github/pokedexchallenge/.storybook/decorators.jsx
<s> [webpack.Progress] 13% building 27/31 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/babel-loader/lib/index.js??ref--7-oneOf-1!/home/fforres/github/pokedexchallenge/node_modules/react-scripts/node_modules/eslint-loader/dist/cjs.js??ref--6-0!/home/fforres/github/pokedexchallenge/src/Componentes/Boton/index.jsx
<s> [webpack.Progress] 13% building 27/32 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/react/dist/client/preview/index.js
<s> [webpack.Progress] 13% building 27/33 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/babel-loader/lib/index.js??ref--7-oneOf-1!/home/fforres/github/pokedexchallenge/node_modules/react-scripts/node_modules/eslint-loader/dist/cjs.js??ref--6-0!/home/fforres/github/pokedexchallenge/src/Estilos/index.jsx
<s> [webpack.Progress] 13% building 27/34 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/es5-shim/es5-shim.js
<s> [webpack.Progress] 13% building 27/35 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/react/cjs/react.production.min.js
<s> [webpack.Progress] 13% building 28/35 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/react/cjs/react.production.min.js
<s> [webpack.Progress] 13% building 29/35 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/react/cjs/react.production.min.js
<s> [webpack.Progress] 13% building 29/36 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/define-well-known-symbol.js
<s> [webpack.Progress] 13% building 30/36 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/define-well-known-symbol.js
<s> [webpack.Progress] 13% building 31/36 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/define-well-known-symbol.js
<s> [webpack.Progress] 13% building 31/37 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/core-js/es/symbol/index.js
<s> [webpack.Progress] 13% building 31/38 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/airbnb-js-shims/target/es2016.js
<s> [webpack.Progress] 13% building 32/38 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/airbnb-js-shims/target/es2016.js
<s> [webpack.Progress] 13% building 33/38 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/airbnb-js-shims/target/es2016.js
<s> [webpack.Progress] 13% building 33/39 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/process/browser.js
<s> [webpack.Progress] 14% building 34/39 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/process/browser.js
<s> [webpack.Progress] 14% building 35/39 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/process/browser.js
<s> [webpack.Progress] 14% building 36/39 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/process/browser.js
<s> [webpack.Progress] 14% building 36/40 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/function.prototype.name/shim.js
<s> [webpack.Progress] 14% building 37/40 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/function.prototype.name/shim.js
<s> [webpack.Progress] 14% building 38/40 modules 2 active /home/fforres/github/pokedexchallenge/node_modules/babel-loader/lib/index.js??ref--7-oneOf-1!/home/fforres/github/pokedexchallenge/node_modules/react-scripts/node_modules/eslint-loader/dist/cjs.js??ref--6-0!/home/fforres/github/pokedexchallenge/src/Estilos/index.jsx
<s> [webpack.Progress] 14% building 38/41 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/react/dist/client/preview/globals.js
<s> [webpack.Progress] 14% building 38/42 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/react/dist/client/preview/render.js
<s> [webpack.Progress] 14% building 38/43 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.array.concat.js
<s> [webpack.Progress] 14% building 39/43 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.array.concat.js
<s> [webpack.Progress] 14% building 39/44 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/path.js
<s> [webpack.Progress] 14% building 39/45 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/has.js
<s> [webpack.Progress] 14% building 39/46 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/well-known-symbol-wrapped.js
<s> [webpack.Progress] 14% building 39/47 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/object-define-property.js
<s> [webpack.Progress] 14% building 40/47 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/object-define-property.js
<s> [webpack.Progress] 14% building 41/47 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/object-define-property.js
<s> [webpack.Progress] 15% building 42/47 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/object-define-property.js
<s> [webpack.Progress] 15% building 43/47 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/object-define-property.js
<s> [webpack.Progress] 15% building 43/48 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.object.to-string.js
<s> [webpack.Progress] 15% building 43/49 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.symbol.js
<s> [webpack.Progress] 15% building 43/50 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.symbol.async-iterator.js
<s> [webpack.Progress] 15% building 43/51 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.symbol.description.js
<s> [webpack.Progress] 15% building 43/52 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.symbol.is-concat-spreadable.js
<s> [webpack.Progress] 15% building 43/53 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.symbol.has-instance.js
<s> [webpack.Progress] 15% building 43/54 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.symbol.iterator.js
<s> [webpack.Progress] 15% building 43/55 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.symbol.match.js
<s> [webpack.Progress] 15% building 43/56 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.symbol.match-all.js
<s> [webpack.Progress] 15% building 43/57 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.symbol.replace.js
<s> [webpack.Progress] 15% building 43/58 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.symbol.search.js
<s> [webpack.Progress] 15% building 43/59 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.symbol.species.js
<s> [webpack.Progress] 15% building 43/60 modules 17 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.symbol.split.js
<s> [webpack.Progress] 15% building 43/61 modules 18 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.symbol.to-primitive.js
<s> [webpack.Progress] 15% building 43/62 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.symbol.to-string-tag.js
<s> [webpack.Progress] 15% building 43/63 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.symbol.unscopables.js
<s> [webpack.Progress] 15% building 43/64 modules 21 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.math.to-string-tag.js
<s> [webpack.Progress] 15% building 43/65 modules 22 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.json.to-string-tag.js
<s> [webpack.Progress] 15% building 43/66 modules 23 active /home/fforres/github/pokedexchallenge/node_modules/airbnb-js-shims/target/es2017.js
<s> [webpack.Progress] 15% building 44/66 modules 22 active /home/fforres/github/pokedexchallenge/node_modules/airbnb-js-shims/target/es2017.js
<s> [webpack.Progress] 15% building 45/66 modules 21 active /home/fforres/github/pokedexchallenge/node_modules/airbnb-js-shims/target/es2017.js
<s> [webpack.Progress] 15% building 46/66 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/airbnb-js-shims/target/es2017.js
<s> [webpack.Progress] 15% building 47/66 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/airbnb-js-shims/target/es2017.js
<s> [webpack.Progress] 15% building 47/67 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/react-is/index.js
<s> [webpack.Progress] 15% building 47/68 modules 21 active /home/fforres/github/pokedexchallenge/node_modules/shallowequal/index.js
<s> [webpack.Progress] 15% building 48/68 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/shallowequal/index.js
<s> [webpack.Progress] 15% building 49/68 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/shallowequal/index.js
<s> [webpack.Progress] 16% building 50/68 modules 18 active /home/fforres/github/pokedexchallenge/node_modules/shallowequal/index.js
<s> [webpack.Progress] 16% building 51/68 modules 17 active /home/fforres/github/pokedexchallenge/node_modules/shallowequal/index.js
<s> [webpack.Progress] 16% building 52/68 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/shallowequal/index.js
<s> [webpack.Progress] 16% building 53/68 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/shallowequal/index.js
<s> [webpack.Progress] 16% building 54/68 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/shallowequal/index.js
<s> [webpack.Progress] 16% building 55/68 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/shallowequal/index.js
<s> [webpack.Progress] 16% building 56/68 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/shallowequal/index.js
<s> [webpack.Progress] 16% building 57/68 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/shallowequal/index.js
<s> [webpack.Progress] 16% building 58/68 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/shallowequal/index.js
<s> [webpack.Progress] 17% building 59/68 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/shallowequal/index.js
<s> [webpack.Progress] 17% building 60/68 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/shallowequal/index.js
<s> [webpack.Progress] 17% building 61/68 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/shallowequal/index.js
<s> [webpack.Progress] 17% building 62/68 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/shallowequal/index.js
<s> [webpack.Progress] 17% building 63/68 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/shallowequal/index.js
<s> [webpack.Progress] 17% building 64/68 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/shallowequal/index.js
<s> [webpack.Progress] 17% building 65/68 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/shallowequal/index.js
<s> [webpack.Progress] 17% building 66/68 modules 2 active /home/fforres/github/pokedexchallenge/node_modules/shallowequal/index.js
<s> [webpack.Progress] 17% building 66/69 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/babel-preset-react-app/node_modules/@babel/runtime/helpers/esm/slicedToArray.js
<s> [webpack.Progress] 17% building 66/70 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/babel-preset-react-app/node_modules/@babel/runtime/helpers/esm/taggedTemplateLiteral.js
<s> [webpack.Progress] 17% building 66/71 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/array-includes/shim.js
<s> [webpack.Progress] 17% building 66/72 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/function.prototype.name/polyfill.js
<s> [webpack.Progress] 17% building 66/73 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js
<s> [webpack.Progress] 17% building 66/74 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/client.js
<s> [webpack.Progress] 17% building 66/75 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/es6-shim/es6-shim.js
<s> [webpack.Progress] 17% building 66/76 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/@emotion/stylis/dist/stylis.browser.esm.js
<s> [webpack.Progress] 17% building 66/77 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/@emotion/is-prop-valid/dist/is-prop-valid.browser.esm.js
<s> [webpack.Progress] 17% building 66/78 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/@emotion/unitless/dist/unitless.browser.esm.js
<s> [webpack.Progress] 18% building 67/78 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/@emotion/unitless/dist/unitless.browser.esm.js
<s> [webpack.Progress] 18% building 68/78 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/@emotion/unitless/dist/unitless.browser.esm.js
<s> [webpack.Progress] 18% building 69/78 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/@emotion/unitless/dist/unitless.browser.esm.js
<s> [webpack.Progress] 18% building 70/78 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/@emotion/unitless/dist/unitless.browser.esm.js
<s> [webpack.Progress] 18% building 71/78 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/@emotion/unitless/dist/unitless.browser.esm.js
<s> [webpack.Progress] 18% building 72/78 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/@emotion/unitless/dist/unitless.browser.esm.js
<s> [webpack.Progress] 18% building 73/78 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/@emotion/unitless/dist/unitless.browser.esm.js
<s> [webpack.Progress] 18% building 74/78 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/@emotion/unitless/dist/unitless.browser.esm.js
<s> [webpack.Progress] 19% building 75/78 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/@emotion/unitless/dist/unitless.browser.esm.js
<s> [webpack.Progress] 19% building 76/78 modules 2 active /home/fforres/github/pokedexchallenge/node_modules/@emotion/unitless/dist/unitless.browser.esm.js
<s> [webpack.Progress] 19% building 77/78 modules 1 active /home/fforres/github/pokedexchallenge/node_modules/@emotion/is-prop-valid/dist/is-prop-valid.browser.esm.js
<s> [webpack.Progress] 19% building 78/78 modules 0 active
<s> [webpack.Progress] 19% building 78/79 modules 1 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/export.js
<s> [webpack.Progress] 19% building 78/80 modules 2 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/fails.js
<s> [webpack.Progress] 19% building 78/81 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/is-array.js
<s> [webpack.Progress] 19% building 78/82 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/is-object.js
<s> [webpack.Progress] 19% building 78/83 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/to-object.js
<s> [webpack.Progress] 19% building 78/84 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/to-length.js
<s> [webpack.Progress] 19% building 78/85 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/create-property.js
<s> [webpack.Progress] 19% building 78/86 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/array-species-create.js
<s> [webpack.Progress] 19% building 78/87 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/array-method-has-species-support.js
<s> [webpack.Progress] 19% building 78/88 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/well-known-symbol.js
<s> [webpack.Progress] 19% building 78/89 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/engine-v8-version.js
<s> [webpack.Progress] 19% building 78/90 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/react-is/cjs/react-is.production.min.js
<s> [webpack.Progress] 19% building 78/91 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/global.js
<s> [webpack.Progress] 19% building 78/92 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/descriptors.js
<s> [webpack.Progress] 19% building 78/93 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/ie8-dom-define.js
<s> [webpack.Progress] 19% building 78/94 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/an-object.js
<s> [webpack.Progress] 19% building 78/95 modules 17 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/to-primitive.js
<s> [webpack.Progress] 19% building 79/95 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/to-primitive.js
<s> [webpack.Progress] 19% building 80/95 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/to-primitive.js
<s> [webpack.Progress] 19% building 81/95 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/to-primitive.js
<s> [webpack.Progress] 19% building 82/95 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/to-primitive.js
<s> [webpack.Progress] 19% building 83/95 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/to-primitive.js
<s> [webpack.Progress] 20% building 84/95 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/to-primitive.js
<s> [webpack.Progress] 20% building 85/95 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/to-primitive.js
<s> [webpack.Progress] 20% building 86/95 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/to-primitive.js
<s> [webpack.Progress] 20% building 87/95 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/to-primitive.js
<s> [webpack.Progress] 20% building 88/95 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/to-primitive.js
<s> [webpack.Progress] 20% building 88/96 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/to-string-tag-support.js
<s> [webpack.Progress] 20% building 89/96 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/to-string-tag-support.js
<s> [webpack.Progress] 20% building 89/97 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/redefine.js
<s> [webpack.Progress] 20% building 89/98 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/object-to-string.js
<s> [webpack.Progress] 20% building 89/99 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/get-built-in.js
<s> [webpack.Progress] 20% building 89/100 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/is-pure.js
<s> [webpack.Progress] 20% building 89/101 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/native-symbol.js
<s> [webpack.Progress] 20% building 89/102 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/use-symbol-as-uid.js
<s> [webpack.Progress] 20% building 89/103 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/create-property-descriptor.js
<s> [webpack.Progress] 20% building 89/104 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/object-create.js
<s> [webpack.Progress] 20% building 89/105 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/to-indexed-object.js
<s> [webpack.Progress] 20% building 89/106 modules 17 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/object-keys.js
<s> [webpack.Progress] 20% building 89/107 modules 18 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/object-get-own-property-names.js
<s> [webpack.Progress] 20% building 89/108 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/object-get-own-property-names-external.js
<s> [webpack.Progress] 20% building 89/109 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/object-get-own-property-symbols.js
<s> [webpack.Progress] 20% building 89/110 modules 21 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/object-get-own-property-descriptor.js
<s> [webpack.Progress] 20% building 89/111 modules 22 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/array-iteration.js
<s> [webpack.Progress] 20% building 89/112 modules 23 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/copy-constructor-properties.js
<s> [webpack.Progress] 20% building 89/113 modules 24 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/internal-state.js
<s> [webpack.Progress] 20% building 89/114 modules 25 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/set-to-string-tag.js
<s> [webpack.Progress] 20% building 89/115 modules 26 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/uid.js
<s> [webpack.Progress] 20% building 89/116 modules 27 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/hidden-keys.js
<s> [webpack.Progress] 20% building 89/117 modules 28 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/shared-key.js
<s> [webpack.Progress] 20% building 89/118 modules 29 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/shared.js
<s> [webpack.Progress] 20% building 89/119 modules 30 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/create-non-enumerable-property.js
<s> [webpack.Progress] 20% building 89/120 modules 31 active /home/fforres/github/pokedexchallenge/node_modules/babel-loader/lib/index.js??ref--7-oneOf-1!/home/fforres/github/pokedexchallenge/node_modules/react-scripts/node_modules/eslint-loader/dist/cjs.js??ref--6-0!/home/fforres/github/pokedexchallenge/src/Estilos/reset.jsx
<s> [webpack.Progress] 20% building 89/121 modules 32 active /home/fforres/github/pokedexchallenge/node_modules/babel-loader/lib/index.js??ref--7-oneOf-1!/home/fforres/github/pokedexchallenge/node_modules/react-scripts/node_modules/eslint-loader/dist/cjs.js??ref--6-0!/home/fforres/github/pokedexchallenge/src/Estilos/aplicacion.jsx
<s> [webpack.Progress] 20% building 89/122 modules 33 active /home/fforres/github/pokedexchallenge/node_modules/babel-loader/lib/index.js??ref--7-oneOf-1!/home/fforres/github/pokedexchallenge/node_modules/react-scripts/node_modules/eslint-loader/dist/cjs.js??ref--6-0!/home/fforres/github/pokedexchallenge/src/Estilos/fonts.jsx
<s> [webpack.Progress] 20% building 89/123 modules 34 active /home/fforres/github/pokedexchallenge/node_modules/babel-loader/lib/index.js??ref--7-oneOf-1!/home/fforres/github/pokedexchallenge/node_modules/react-scripts/node_modules/eslint-loader/dist/cjs.js??ref--6-0!/home/fforres/github/pokedexchallenge/src/Estilos/temas.jsx
<s> [webpack.Progress] 20% building 89/124 modules 35 active /home/fforres/github/pokedexchallenge/node_modules/airbnb-js-shims/target/es2018.js
<s> [webpack.Progress] 20% building 89/125 modules 36 active /home/fforres/github/pokedexchallenge/node_modules/babel-loader/lib/index.js??ref--7-oneOf-1!/home/fforres/github/pokedexchallenge/node_modules/react-scripts/node_modules/eslint-loader/dist/cjs.js??ref--6-0!/home/fforres/github/pokedexchallenge/src/Componentes/PokeTarjeta/index.jsx
<s> [webpack.Progress] 20% building 90/125 modules 35 active /home/fforres/github/pokedexchallenge/node_modules/babel-loader/lib/index.js??ref--7-oneOf-1!/home/fforres/github/pokedexchallenge/node_modules/react-scripts/node_modules/eslint-loader/dist/cjs.js??ref--6-0!/home/fforres/github/pokedexchallenge/src/Componentes/PokeTarjeta/index.jsx
<s> [webpack.Progress] 20% building 90/126 modules 36 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.array.iterator.js
<s> [webpack.Progress] 20% building 90/127 modules 37 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.object.create.js
<s> [webpack.Progress] 20% building 90/128 modules 38 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.object.define-property.js
<s> [webpack.Progress] 20% building 90/129 modules 39 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.object.get-prototype-of.js
<s> [webpack.Progress] 20% building 90/130 modules 40 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.object.set-prototype-of.js
<s> [webpack.Progress] 20% building 90/131 modules 41 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.promise.js
<s> [webpack.Progress] 20% building 90/132 modules 42 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.string.iterator.js
<s> [webpack.Progress] 20% building 90/133 modules 43 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/web.dom-collections.iterator.js
<s> [webpack.Progress] 20% building 91/133 modules 42 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/web.dom-collections.iterator.js
<s> [webpack.Progress] 21% building 92/133 modules 41 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/web.dom-collections.iterator.js
<s> [webpack.Progress] 21% building 93/133 modules 40 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/web.dom-collections.iterator.js
<s> [webpack.Progress] 21% building 94/133 modules 39 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/web.dom-collections.iterator.js
<s> [webpack.Progress] 21% building 95/133 modules 38 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/web.dom-collections.iterator.js
<s> [webpack.Progress] 21% building 95/134 modules 39 active /home/fforres/github/pokedexchallenge/node_modules/functions-have-names/index.js
<s> [webpack.Progress] 21% building 95/135 modules 40 active /home/fforres/github/pokedexchallenge/node_modules/define-properties/index.js
<s> [webpack.Progress] 21% building 95/136 modules 41 active /home/fforres/github/pokedexchallenge/node_modules/object-assign/index.js
<s> [webpack.Progress] 21% building 96/136 modules 40 active /home/fforres/github/pokedexchallenge/node_modules/object-assign/index.js
<s> [webpack.Progress] 21% building 97/136 modules 39 active /home/fforres/github/pokedexchallenge/node_modules/object-assign/index.js
<s> [webpack.Progress] 21% building 98/136 modules 38 active /home/fforres/github/pokedexchallenge/node_modules/object-assign/index.js
<s> [webpack.Progress] 21% building 99/136 modules 37 active /home/fforres/github/pokedexchallenge/node_modules/object-assign/index.js
<s> [webpack.Progress] 22% building 100/136 modules 36 active /home/fforres/github/pokedexchallenge/node_modules/object-assign/index.js
<s> [webpack.Progress] 22% building 101/136 modules 35 active /home/fforres/github/pokedexchallenge/node_modules/object-assign/index.js
<s> [webpack.Progress] 22% building 102/136 modules 34 active /home/fforres/github/pokedexchallenge/node_modules/object-assign/index.js
<s> [webpack.Progress] 22% building 103/136 modules 33 active /home/fforres/github/pokedexchallenge/node_modules/object-assign/index.js
<s> [webpack.Progress] 22% building 104/136 modules 32 active /home/fforres/github/pokedexchallenge/node_modules/object-assign/index.js
<s> [webpack.Progress] 22% building 105/136 modules 31 active /home/fforres/github/pokedexchallenge/node_modules/object-assign/index.js
<s> [webpack.Progress] 22% building 106/136 modules 30 active /home/fforres/github/pokedexchallenge/node_modules/object-assign/index.js
<s> [webpack.Progress] 22% building 107/136 modules 29 active /home/fforres/github/pokedexchallenge/node_modules/object-assign/index.js
<s> [webpack.Progress] 22% building 108/136 modules 28 active /home/fforres/github/pokedexchallenge/node_modules/object-assign/index.js
<s> [webpack.Progress] 23% building 109/136 modules 27 active /home/fforres/github/pokedexchallenge/node_modules/object-assign/index.js
<s> [webpack.Progress] 23% building 110/136 modules 26 active /home/fforres/github/pokedexchallenge/node_modules/object-assign/index.js
<s> [webpack.Progress] 23% building 111/136 modules 25 active /home/fforres/github/pokedexchallenge/node_modules/object-assign/index.js
<s> [webpack.Progress] 23% building 112/136 modules 24 active /home/fforres/github/pokedexchallenge/node_modules/object-assign/index.js
<s> [webpack.Progress] 23% building 113/136 modules 23 active /home/fforres/github/pokedexchallenge/node_modules/object-assign/index.js
<s> [webpack.Progress] 23% building 114/136 modules 22 active /home/fforres/github/pokedexchallenge/node_modules/object-assign/index.js
<s> [webpack.Progress] 23% building 115/136 modules 21 active /home/fforres/github/pokedexchallenge/node_modules/object-assign/index.js
<s> [webpack.Progress] 23% building 116/136 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/object-assign/index.js
<s> [webpack.Progress] 24% building 117/136 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/object-assign/index.js
<s> [webpack.Progress] 24% building 118/136 modules 18 active /home/fforres/github/pokedexchallenge/node_modules/object-assign/index.js
<s> [webpack.Progress] 24% building 119/136 modules 17 active /home/fforres/github/pokedexchallenge/node_modules/object-assign/index.js
<s> [webpack.Progress] 24% building 119/137 modules 18 active /home/fforres/github/pokedexchallenge/node_modules/babel-preset-react-app/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js
<s> [webpack.Progress] 24% building 119/138 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/babel-preset-react-app/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js
<s> [webpack.Progress] 24% building 120/138 modules 18 active /home/fforres/github/pokedexchallenge/node_modules/babel-preset-react-app/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js
<s> [webpack.Progress] 24% building 120/139 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/object.values/shim.js
<s> [webpack.Progress] 24% building 120/140 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/function.prototype.name/implementation.js
<s> [webpack.Progress] 24% building 120/141 modules 21 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/shim.js
<s> [webpack.Progress] 24% building 121/141 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/shim.js
<s> [webpack.Progress] 24% building 122/141 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/shim.js
<s> [webpack.Progress] 24% building 123/141 modules 18 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/shim.js
<s> [webpack.Progress] 24% building 124/141 modules 17 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/shim.js
<s> [webpack.Progress] 25% building 125/141 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/shim.js
<s> [webpack.Progress] 25% building 126/141 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/shim.js
<s> [webpack.Progress] 25% building 127/141 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/shim.js
<s> [webpack.Progress] 25% building 128/141 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/shim.js
<s> [webpack.Progress] 25% building 128/142 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/array-includes/polyfill.js
<s> [webpack.Progress] 25% building 128/143 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/babel-preset-react-app/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js
<s> [webpack.Progress] 25% building 128/144 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/babel-preset-react-app/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js
<s> [webpack.Progress] 25% building 128/145 modules 17 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.padend/shim.js
<s> [webpack.Progress] 25% building 128/146 modules 18 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.padstart/shim.js
<s> [webpack.Progress] 25% building 128/147 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/object-property-is-enumerable.js
<s> [webpack.Progress] 25% building 129/147 modules 18 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/object-property-is-enumerable.js
<s> [webpack.Progress] 25% building 130/147 modules 17 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/object-property-is-enumerable.js
<s> [webpack.Progress] 25% building 131/147 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/object-property-is-enumerable.js
<s> [webpack.Progress] 25% building 131/148 modules 17 active /home/fforres/github/pokedexchallenge/node_modules/object.entries/shim.js
<s> [webpack.Progress] 25% building 132/148 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/object.entries/shim.js
<s> [webpack.Progress] 25% building 133/148 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/object.entries/shim.js
<s> [webpack.Progress] 25% building 133/149 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/react-dom/index.js
<s> [webpack.Progress] 26% building 134/149 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/react-dom/index.js
<s> [webpack.Progress] 26% building 135/149 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/react-dom/index.js
<s> [webpack.Progress] 26% building 136/149 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/react-dom/index.js
<s> [webpack.Progress] 26% building 137/149 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/react-dom/index.js
<s> [webpack.Progress] 26% building 138/149 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/react-dom/index.js
<s> [webpack.Progress] 26% building 139/149 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/react-dom/index.js
<s> [webpack.Progress] 26% building 140/149 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/react-dom/index.js
<s> [webpack.Progress] 26% building 141/149 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/react-dom/index.js
<s> [webpack.Progress] 26% building 141/150 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/set-global.js
<s> [webpack.Progress] 26% building 141/151 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/is-forced.js
<s> [webpack.Progress] 27% building 142/151 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/is-forced.js
<s> [webpack.Progress] 27% building 142/152 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/classof-raw.js
<s> [webpack.Progress] 27% building 142/153 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/require-object-coercible.js
<s> [webpack.Progress] 27% building 142/154 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/to-integer.js
<s> [webpack.Progress] 27% building 142/155 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/engine-user-agent.js
<s> [webpack.Progress] 27% building 143/155 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/engine-user-agent.js
<s> [webpack.Progress] 27% building 144/155 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/engine-user-agent.js
<s> [webpack.Progress] 27% building 144/156 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/document-create-element.js
<s> [webpack.Progress] 27% building 145/156 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/document-create-element.js
<s> [webpack.Progress] 27% building 146/156 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/document-create-element.js
<s> [webpack.Progress] 27% building 147/156 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/document-create-element.js
<s> [webpack.Progress] 27% building 148/156 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/document-create-element.js
<s> [webpack.Progress] 27% building 149/156 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/document-create-element.js
<s> [webpack.Progress] 28% building 150/156 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/document-create-element.js
<s> [webpack.Progress] 28% building 150/157 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/inspect-source.js
<s> [webpack.Progress] 28% building 150/158 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/classof.js
<s> [webpack.Progress] 28% building 150/159 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/object-define-properties.js
<s> [webpack.Progress] 28% building 150/160 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/enum-bug-keys.js
<s> [webpack.Progress] 28% building 150/161 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/html.js
<s> [webpack.Progress] 28% building 150/162 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/indexed-object.js
<s> [webpack.Progress] 28% building 150/163 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/object-keys-internal.js
<s> [webpack.Progress] 28% building 150/164 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/function-bind-context.js
<s> [webpack.Progress] 28% building 150/165 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/own-keys.js
<s> [webpack.Progress] 28% building 150/166 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/native-weak-map.js
<s> [webpack.Progress] 28% building 150/167 modules 17 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/shared-store.js
<s> [webpack.Progress] 28% building 150/168 modules 18 active /home/fforres/github/pokedexchallenge/node_modules/airbnb-js-shims/target/es2019.js
<s> [webpack.Progress] 28% building 150/169 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/@fforres/pokemon-local-database/build/main/index.js
<s> [webpack.Progress] 28% building 150/170 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/add-to-unscopables.js
<s> [webpack.Progress] 28% building 150/171 modules 21 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/iterators.js
<s> [webpack.Progress] 28% building 150/172 modules 22 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/define-iterator.js
<s> [webpack.Progress] 28% building 150/173 modules 23 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/object-get-prototype-of.js
<s> [webpack.Progress] 28% building 150/174 modules 24 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/correct-prototype-getter.js
<s> [webpack.Progress] 28% building 150/175 modules 25 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/object-set-prototype-of.js
<s> [webpack.Progress] 28% building 150/176 modules 26 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/native-promise-constructor.js
<s> [webpack.Progress] 28% building 150/177 modules 27 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/redefine-all.js
<s> [webpack.Progress] 28% building 150/178 modules 28 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/set-species.js
<s> [webpack.Progress] 28% building 150/179 modules 29 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/a-function.js
<s> [webpack.Progress] 28% building 150/180 modules 30 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/an-instance.js
<s> [webpack.Progress] 28% building 150/181 modules 31 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/iterate.js
<s> [webpack.Progress] 28% building 150/182 modules 32 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/check-correctness-of-iteration.js
<s> [webpack.Progress] 28% building 150/183 modules 33 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/species-constructor.js
<s> [webpack.Progress] 28% building 150/184 modules 34 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/task.js
<s> [webpack.Progress] 28% building 150/185 modules 35 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/microtask.js
<s> [webpack.Progress] 28% building 150/186 modules 36 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/promise-resolve.js
<s> [webpack.Progress] 28% building 150/187 modules 37 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/host-report-errors.js
<s> [webpack.Progress] 28% building 150/188 modules 38 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/new-promise-capability.js
<s> [webpack.Progress] 28% building 150/189 modules 39 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/perform.js
<s> [webpack.Progress] 28% building 150/190 modules 40 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/string-multibyte.js
<s> [webpack.Progress] 28% building 150/191 modules 41 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/dom-iterables.js
<s> [webpack.Progress] 28% building 150/192 modules 42 active /home/fforres/github/pokedexchallenge/node_modules/react-dom/cjs/react-dom.production.min.js
<s> [webpack.Progress] 28% building 151/192 modules 41 active /home/fforres/github/pokedexchallenge/node_modules/react-dom/cjs/react-dom.production.min.js
<s> [webpack.Progress] 28% building 152/192 modules 40 active /home/fforres/github/pokedexchallenge/node_modules/react-dom/cjs/react-dom.production.min.js
<s> [webpack.Progress] 28% building 153/192 modules 39 active /home/fforres/github/pokedexchallenge/node_modules/react-dom/cjs/react-dom.production.min.js
<s> [webpack.Progress] 28% building 154/192 modules 38 active /home/fforres/github/pokedexchallenge/node_modules/react-dom/cjs/react-dom.production.min.js
<s> [webpack.Progress] 28% building 155/192 modules 37 active /home/fforres/github/pokedexchallenge/node_modules/react-dom/cjs/react-dom.production.min.js
<s> [webpack.Progress] 28% building 156/192 modules 36 active /home/fforres/github/pokedexchallenge/node_modules/react-dom/cjs/react-dom.production.min.js
<s> [webpack.Progress] 28% building 157/192 modules 35 active /home/fforres/github/pokedexchallenge/node_modules/react-dom/cjs/react-dom.production.min.js
<s> [webpack.Progress] 28% building 158/192 modules 34 active /home/fforres/github/pokedexchallenge/node_modules/react-dom/cjs/react-dom.production.min.js
<s> [webpack.Progress] 29% building 159/192 modules 33 active /home/fforres/github/pokedexchallenge/node_modules/react-dom/cjs/react-dom.production.min.js
<s> [webpack.Progress] 29% building 160/192 modules 32 active /home/fforres/github/pokedexchallenge/node_modules/react-dom/cjs/react-dom.production.min.js
<s> [webpack.Progress] 29% building 161/192 modules 31 active /home/fforres/github/pokedexchallenge/node_modules/react-dom/cjs/react-dom.production.min.js
<s> [webpack.Progress] 29% building 162/192 modules 30 active /home/fforres/github/pokedexchallenge/node_modules/react-dom/cjs/react-dom.production.min.js
<s> [webpack.Progress] 29% building 163/192 modules 29 active /home/fforres/github/pokedexchallenge/node_modules/react-dom/cjs/react-dom.production.min.js
<s> [webpack.Progress] 29% building 164/192 modules 28 active /home/fforres/github/pokedexchallenge/node_modules/react-dom/cjs/react-dom.production.min.js
<s> [webpack.Progress] 29% building 165/192 modules 27 active /home/fforres/github/pokedexchallenge/node_modules/react-dom/cjs/react-dom.production.min.js
<s> [webpack.Progress] 29% building 166/192 modules 26 active /home/fforres/github/pokedexchallenge/node_modules/react-dom/cjs/react-dom.production.min.js
<s> [webpack.Progress] 30% building 167/192 modules 25 active /home/fforres/github/pokedexchallenge/node_modules/react-dom/cjs/react-dom.production.min.js
<s> [webpack.Progress] 30% building 168/192 modules 24 active /home/fforres/github/pokedexchallenge/node_modules/react-dom/cjs/react-dom.production.min.js
<s> [webpack.Progress] 30% building 169/192 modules 23 active /home/fforres/github/pokedexchallenge/node_modules/react-dom/cjs/react-dom.production.min.js
<s> [webpack.Progress] 30% building 169/193 modules 24 active /home/fforres/github/pokedexchallenge/node_modules/object.values/polyfill.js
<s> [webpack.Progress] 30% building 169/194 modules 25 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/auto.js
<s> [webpack.Progress] 30% building 169/195 modules 26 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/polyfill.js
<s> [webpack.Progress] 30% building 170/195 modules 25 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/polyfill.js
<s> [webpack.Progress] 30% building 171/195 modules 24 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/polyfill.js
<s> [webpack.Progress] 30% building 172/195 modules 23 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/polyfill.js
<s> [webpack.Progress] 30% building 173/195 modules 22 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/polyfill.js
<s> [webpack.Progress] 30% building 174/195 modules 21 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/polyfill.js
<s> [webpack.Progress] 31% building 175/195 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/polyfill.js
<s> [webpack.Progress] 31% building 176/195 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/polyfill.js
<s> [webpack.Progress] 31% building 177/195 modules 18 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/polyfill.js
<s> [webpack.Progress] 31% building 178/195 modules 17 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/polyfill.js
<s> [webpack.Progress] 31% building 179/195 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/polyfill.js
<s> [webpack.Progress] 31% building 180/195 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/polyfill.js
<s> [webpack.Progress] 31% building 181/195 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/polyfill.js
<s> [webpack.Progress] 31% building 182/195 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/polyfill.js
<s> [webpack.Progress] 31% building 183/195 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/polyfill.js
<s> [webpack.Progress] 32% building 184/195 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/polyfill.js
<s> [webpack.Progress] 32% building 185/195 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/polyfill.js
<s> [webpack.Progress] 32% building 186/195 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/polyfill.js
<s> [webpack.Progress] 32% building 187/195 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/polyfill.js
<s> [webpack.Progress] 32% building 188/195 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/polyfill.js
<s> [webpack.Progress] 32% building 189/195 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/polyfill.js
<s> [webpack.Progress] 32% building 190/195 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/polyfill.js
<s> [webpack.Progress] 32% building 191/195 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/polyfill.js
<s> [webpack.Progress] 32% building 191/196 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/array-includes/implementation.js
<s> [webpack.Progress] 32% building 191/197 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/babel-preset-react-app/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js
<s> [webpack.Progress] 32% building 191/198 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/@emotion/memoize/dist/memoize.browser.esm.js
<s> [webpack.Progress] 32% building 191/199 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.padend/polyfill.js
<s> [webpack.Progress] 32% building 191/200 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.padstart/polyfill.js
<s> [webpack.Progress] 33% building 192/200 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.padstart/polyfill.js
<s> [webpack.Progress] 33% building 192/201 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/object.entries/polyfill.js
<s> [webpack.Progress] 33% building 192/202 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/dist/client/index.js
<s> [webpack.Progress] 33% building 193/202 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/dist/client/index.js
<s> [webpack.Progress] 33% building 194/202 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/dist/client/index.js
<s> [webpack.Progress] 33% building 195/202 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/dist/client/index.js
<s> [webpack.Progress] 33% building 196/202 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/dist/client/index.js
<s> [webpack.Progress] 33% building 197/202 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/dist/client/index.js
<s> [webpack.Progress] 33% building 198/202 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/dist/client/index.js
<s> [webpack.Progress] 33% building 199/202 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/dist/client/index.js
<s> [webpack.Progress] 34% building 200/202 modules 2 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/dist/client/index.js
<s> [webpack.Progress] 34% building 200/203 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/IsCallable.js
<s> [webpack.Progress] 34% building 200/204 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/helpers/callBound.js
<s> [webpack.Progress] 34% building 201/204 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/helpers/callBound.js
<s> [webpack.Progress] 34% building 202/204 modules 2 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/helpers/callBound.js
<s> [webpack.Progress] 34% building 202/205 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/array-includes.js
<s> [webpack.Progress] 34% building 202/206 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/airbnb-js-shims/target/es2020.js
<s> [webpack.Progress] 34% building 202/207 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/object-keys/index.js
<s> [webpack.Progress] 34% building 203/207 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/object-keys/index.js
<s> [webpack.Progress] 34% building 204/207 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/object-keys/index.js
<s> [webpack.Progress] 34% building 204/208 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/create-iterator-constructor.js
<s> [webpack.Progress] 34% building 204/209 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/iterators-core.js
<s> [webpack.Progress] 34% building 204/210 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/a-possible-prototype.js
<s> [webpack.Progress] 34% building 204/211 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/is-array-iterator-method.js
<s> [webpack.Progress] 34% building 204/212 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/get-iterator-method.js
<s> [webpack.Progress] 34% building 204/213 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/call-with-safe-iteration-closing.js
<s> [webpack.Progress] 34% building 204/214 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/engine-is-ios.js
<s> [webpack.Progress] 34% building 205/214 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/engine-is-ios.js
<s> [webpack.Progress] 34% building 206/214 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/engine-is-ios.js
<s> [webpack.Progress] 34% building 206/215 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/object.values/implementation.js
<s> [webpack.Progress] 34% building 207/215 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/object.values/implementation.js
<s> [webpack.Progress] 34% building 207/216 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/array.prototype.flatmap/auto.js
<s> [webpack.Progress] 34% building 207/217 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/array.prototype.flat/auto.js
<s> [webpack.Progress] 34% building 207/218 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/symbol.prototype.description/auto.js
<s> [webpack.Progress] 34% building 207/219 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/object.fromentries/auto.js
<s> [webpack.Progress] 34% building 207/220 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/shim.js
<s> [webpack.Progress] 34% building 207/221 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/implementation.js
<s> [webpack.Progress] 34% building 208/221 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/implementation.js
<s> [webpack.Progress] 35% building 209/221 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/implementation.js
<s> [webpack.Progress] 35% building 210/221 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/implementation.js
<s> [webpack.Progress] 35% building 211/221 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/implementation.js
<s> [webpack.Progress] 35% building 212/221 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/implementation.js
<s> [webpack.Progress] 35% building 213/221 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/implementation.js
<s> [webpack.Progress] 35% building 214/221 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/object.getownpropertydescriptors/implementation.js
<s> [webpack.Progress] 35% building 214/222 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/GetIntrinsic.js
<s> [webpack.Progress] 35% building 214/223 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/helpers/isFinite.js
<s> [webpack.Progress] 35% building 214/224 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/helpers/isNaN.js
<s> [webpack.Progress] 35% building 214/225 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.padend/implementation.js
<s> [webpack.Progress] 35% building 214/226 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.padstart/implementation.js
<s> [webpack.Progress] 35% building 214/227 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/ToInteger.js
<s> [webpack.Progress] 35% building 214/228 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/ToLength.js
<s> [webpack.Progress] 35% building 214/229 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/ToObject.js
<s> [webpack.Progress] 35% building 214/230 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/SameValueZero.js
<s> [webpack.Progress] 35% building 214/231 modules 17 active /home/fforres/github/pokedexchallenge/node_modules/object.entries/implementation.js
<s> [webpack.Progress] 35% building 215/231 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/object.entries/implementation.js
<s> [webpack.Progress] 35% building 216/231 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/object.entries/implementation.js
<s> [webpack.Progress] 36% building 217/231 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/object.entries/implementation.js
<s> [webpack.Progress] 36% building 218/231 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/object.entries/implementation.js
<s> [webpack.Progress] 36% building 219/231 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/object.entries/implementation.js
<s> [webpack.Progress] 36% building 220/231 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/object.entries/implementation.js
<s> [webpack.Progress] 36% building 221/231 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/object.entries/implementation.js
<s> [webpack.Progress] 36% building 222/231 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/object.entries/implementation.js
<s> [webpack.Progress] 36% building 223/231 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/object.entries/implementation.js
<s> [webpack.Progress] 36% building 224/231 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/object.entries/implementation.js
<s> [webpack.Progress] 37% building 225/231 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/object.entries/implementation.js
<s> [webpack.Progress] 37% building 226/231 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/object.entries/implementation.js
<s> [webpack.Progress] 37% building 226/232 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/helpers/callBind.js
<s> [webpack.Progress] 37% building 227/232 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/helpers/callBind.js
<s> [webpack.Progress] 37% building 228/232 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/helpers/callBind.js
<s> [webpack.Progress] 37% building 229/232 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/helpers/callBind.js
<s> [webpack.Progress] 37% building 230/232 modules 2 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/helpers/callBind.js
<s> [webpack.Progress] 37% building 231/232 modules 1 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/helpers/callBind.js
<s> [webpack.Progress] 37% building 231/233 modules 2 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/to-absolute-index.js
<s> [webpack.Progress] 37% building 231/234 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/scheduler/index.js
<s> [webpack.Progress] 37% building 231/235 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/object-keys/isArguments.js
<s> [webpack.Progress] 37% building 231/236 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/object-keys/implementation.js
<s> [webpack.Progress] 37% building 232/236 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/object-keys/implementation.js
<s> [webpack.Progress] 37% building 232/237 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/@fforres/pokemon-local-database/build/main/data/index.js
<s> [webpack.Progress] 37% building 232/238 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/@fforres/pokemon-local-database/build/main/lib/index.js
<s> [webpack.Progress] 37% building 233/238 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/@fforres/pokemon-local-database/build/main/lib/index.js
<s> [webpack.Progress] 37% building 233/239 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/is-string/index.js
<s> [webpack.Progress] 38% building 234/239 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/is-string/index.js
<s> [webpack.Progress] 38% building 234/240 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/RequireObjectCoercible.js
<s> [webpack.Progress] 38% building 235/240 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/RequireObjectCoercible.js
<s> [webpack.Progress] 38% building 236/240 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/RequireObjectCoercible.js
<s> [webpack.Progress] 38% building 236/241 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.matchall/auto.js
<s> [webpack.Progress] 38% building 236/242 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/globalthis/auto.js
<s> [webpack.Progress] 38% building 236/243 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/array.prototype.flatmap/shim.js
<s> [webpack.Progress] 38% building 236/244 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/array.prototype.flat/shim.js
<s> [webpack.Progress] 38% building 236/245 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/promise.allsettled/auto.js
<s> [webpack.Progress] 38% building 236/246 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/symbol.prototype.description/shim.js
<s> [webpack.Progress] 38% building 236/247 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/object.fromentries/shim.js
<s> [webpack.Progress] 38% building 236/248 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/requirePromise.js
<s> [webpack.Progress] 38% building 236/249 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/polyfill.js
<s> [webpack.Progress] 38% building 236/250 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/CreateDataProperty.js
<s> [webpack.Progress] 38% building 236/251 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToObject.js
<s> [webpack.Progress] 38% building 236/252 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/babel-loader/lib/index.js??ref--7-oneOf-1!/home/fforres/github/pokedexchallenge/node_modules/react-scripts/node_modules/eslint-loader/dist/cjs.js??ref--6-0!/home/fforres/github/pokedexchallenge/src/Componentes/Tipo/index.jsx
<s> [webpack.Progress] 38% building 236/253 modules 17 active /home/fforres/github/pokedexchallenge/node_modules/babel-loader/lib/index.js??ref--7-oneOf-1!/home/fforres/github/pokedexchallenge/node_modules/react-scripts/node_modules/eslint-loader/dist/cjs.js??ref--6-0!/home/fforres/github/pokedexchallenge/src/Componentes/Tipografia/index.jsx
<s> [webpack.Progress] 38% building 236/254 modules 18 active /home/fforres/github/pokedexchallenge/node_modules/babel-loader/lib/index.js??ref--7-oneOf-1!/home/fforres/github/pokedexchallenge/node_modules/react-scripts/node_modules/eslint-loader/dist/cjs.js??ref--6-0!/home/fforres/github/pokedexchallenge/src/Componentes/Favorito/index.jsx
<s> [webpack.Progress] 38% building 236/255 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToLength.js
<s> [webpack.Progress] 38% building 236/256 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToString.js
<s> [webpack.Progress] 38% building 237/256 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToString.js
<s> [webpack.Progress] 38% building 238/256 modules 18 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToString.js
<s> [webpack.Progress] 38% building 238/257 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/ToNumber.js
<s> [webpack.Progress] 38% building 238/258 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/helpers/maxSafeInteger.js
<s> [webpack.Progress] 38% building 238/259 modules 21 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/RequireObjectCoercible.js
<s> [webpack.Progress] 38% building 239/259 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/RequireObjectCoercible.js
<s> [webpack.Progress] 38% building 240/259 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/RequireObjectCoercible.js
<s> [webpack.Progress] 38% building 241/259 modules 18 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/RequireObjectCoercible.js
<s> [webpack.Progress] 39% building 242/259 modules 17 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/RequireObjectCoercible.js
<s> [webpack.Progress] 39% building 243/259 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/RequireObjectCoercible.js
<s> [webpack.Progress] 39% building 244/259 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/RequireObjectCoercible.js
<s> [webpack.Progress] 39% building 245/259 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/RequireObjectCoercible.js
<s> [webpack.Progress] 39% building 246/259 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/RequireObjectCoercible.js
<s> [webpack.Progress] 39% building 247/259 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/RequireObjectCoercible.js
<s> [webpack.Progress] 39% building 248/259 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/RequireObjectCoercible.js
<s> [webpack.Progress] 39% building 249/259 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/RequireObjectCoercible.js
<s> [webpack.Progress] 40% building 250/259 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/RequireObjectCoercible.js
<s> [webpack.Progress] 40% building 251/259 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/RequireObjectCoercible.js
<s> [webpack.Progress] 40% building 251/260 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/scheduler/cjs/scheduler.production.min.js
<s> [webpack.Progress] 40% building 251/261 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/is-callable/index.js
<s> [webpack.Progress] 40% building 251/262 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/5/ToInteger.js
<s> [webpack.Progress] 40% building 251/263 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/@fforres/pokemon-local-database/build/main/data/images_base64_sprite.json
<s> [webpack.Progress] 40% building 251/264 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/@fforres/pokemon-local-database/build/main/data/images_base64_thumbnail.json
<s> [webpack.Progress] 40% building 251/265 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/@fforres/pokemon-local-database/build/main/data/items.json
<s> [webpack.Progress] 40% building 251/266 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/@fforres/pokemon-local-database/build/main/data/moves.json
<s> [webpack.Progress] 40% building 251/267 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/@fforres/pokemon-local-database/build/main/data/pokedex.json
<s> [webpack.Progress] 40% building 251/268 modules 17 active /home/fforres/github/pokedexchallenge/node_modules/@fforres/pokemon-local-database/build/main/data/types.json
<s> [webpack.Progress] 40% building 252/268 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/@fforres/pokemon-local-database/build/main/data/types.json
<s> [webpack.Progress] 40% building 253/268 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/@fforres/pokemon-local-database/build/main/data/types.json
<s> [webpack.Progress] 40% building 253/269 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/dist/client/preview/index.js
<s> [webpack.Progress] 40% building 254/269 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/dist/client/preview/index.js
<s> [webpack.Progress] 40% building 255/269 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/dist/client/preview/index.js
<s> [webpack.Progress] 40% building 256/269 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/dist/client/preview/index.js
<s> [webpack.Progress] 40% building 257/269 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/dist/client/preview/index.js
<s> [webpack.Progress] 40% building 258/269 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/dist/client/preview/index.js
<s> [webpack.Progress] 41% building 259/269 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/dist/client/preview/index.js
<s> [webpack.Progress] 41% building 260/269 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/dist/client/preview/index.js
<s> [webpack.Progress] 41% building 261/269 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/dist/client/preview/index.js
<s> [webpack.Progress] 41% building 262/269 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/dist/client/preview/index.js
<s> [webpack.Progress] 41% building 263/269 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/dist/client/preview/index.js
<s> [webpack.Progress] 41% building 264/269 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/@fforres/pokemon-local-database/build/main/data/images_base64_thumbnail.json
<s> [webpack.Progress] 41% building 265/269 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/@fforres/pokemon-local-database/build/main/data/images_base64_thumbnail.json
<s> [webpack.Progress] 41% building 265/270 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/has-symbols/index.js
<s> [webpack.Progress] 41% building 265/271 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/5/CheckObjectCoercible.js
<s> [webpack.Progress] 41% building 265/272 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.matchall/shim.js
<s> [webpack.Progress] 41% building 265/273 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/globalthis/shim.js
<s> [webpack.Progress] 41% building 265/274 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/array.prototype.flatmap/polyfill.js
<s> [webpack.Progress] 41% building 265/275 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/array.prototype.flat/polyfill.js
<s> [webpack.Progress] 41% building 265/276 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/promise.allsettled/shim.js
<s> [webpack.Progress] 41% building 265/277 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/symbol.prototype.description/polyfill.js
<s> [webpack.Progress] 41% building 265/278 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/helpers/getInferredName.js
<s> [webpack.Progress] 41% building 265/279 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/object.fromentries/polyfill.js
<s> [webpack.Progress] 41% building 265/280 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/implementation.js
<s> [webpack.Progress] 41% building 265/281 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/helpers/DefineOwnProperty.js
<s> [webpack.Progress] 41% building 265/282 modules 17 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/FromPropertyDescriptor.js
<s> [webpack.Progress] 41% building 265/283 modules 18 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/OrdinaryGetOwnProperty.js
<s> [webpack.Progress] 41% building 265/284 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/IsExtensible.js
<s> [webpack.Progress] 41% building 265/285 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/IsDataDescriptor.js
<s> [webpack.Progress] 41% building 265/286 modules 21 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/SameValue.js
<s> [webpack.Progress] 41% building 265/287 modules 22 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/IsPropertyKey.js
<s> [webpack.Progress] 41% building 265/288 modules 23 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/Type.js
<s> [webpack.Progress] 41% building 265/289 modules 24 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToInteger.js
<s> [webpack.Progress] 41% building 265/290 modules 25 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/helpers/regexTester.js
<s> [webpack.Progress] 41% building 265/291 modules 26 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/helpers/isPrimitive.js
<s> [webpack.Progress] 41% building 265/292 modules 27 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/ToPrimitive.js
<s> [webpack.Progress] 41% building 266/292 modules 26 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/ToPrimitive.js
<s> [webpack.Progress] 42% building 267/292 modules 25 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/ToPrimitive.js
<s> [webpack.Progress] 42% building 268/292 modules 24 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/ToPrimitive.js
<s> [webpack.Progress] 42% building 269/292 modules 23 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/ToPrimitive.js
<s> [webpack.Progress] 42% building 270/292 modules 22 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/ToPrimitive.js
<s> [webpack.Progress] 42% building 271/292 modules 21 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/ToPrimitive.js
<s> [webpack.Progress] 42% building 272/292 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/ToPrimitive.js
<s> [webpack.Progress] 42% building 273/292 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/ToPrimitive.js
<s> [webpack.Progress] 42% building 274/292 modules 18 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/ToPrimitive.js
<s> [webpack.Progress] 43% building 275/292 modules 17 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/ToPrimitive.js
<s> [webpack.Progress] 43% building 276/292 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/ToPrimitive.js
<s> [webpack.Progress] 43% building 277/292 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/ToPrimitive.js
<s> [webpack.Progress] 43% building 278/292 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/ToPrimitive.js
<s> [webpack.Progress] 43% building 279/292 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/ToPrimitive.js
<s> [webpack.Progress] 43% building 280/292 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/ToPrimitive.js
<s> [webpack.Progress] 43% building 281/292 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/ToPrimitive.js
<s> [webpack.Progress] 43% building 282/292 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/ToPrimitive.js
<s> [webpack.Progress] 43% building 283/292 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/ToPrimitive.js
<s> [webpack.Progress] 44% building 284/292 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/ToPrimitive.js
<s> [webpack.Progress] 44% building 285/292 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/ToPrimitive.js
<s> [webpack.Progress] 44% building 286/292 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/ToPrimitive.js
<s> [webpack.Progress] 44% building 287/292 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2018/ToPrimitive.js
<s> [webpack.Progress] 44% building 287/293 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/5/ToNumber.js
<s> [webpack.Progress] 44% building 287/294 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/helpers/sign.js
<s> [webpack.Progress] 44% building 288/294 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/helpers/sign.js
<s> [webpack.Progress] 44% building 288/295 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/dist/client/preview/start.js
<s> [webpack.Progress] 44% building 289/295 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/dist/client/preview/start.js
<s> [webpack.Progress] 44% building 290/295 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/dist/client/preview/start.js
<s> [webpack.Progress] 44% building 291/295 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/dist/client/preview/start.js
<s> [webpack.Progress] 44% building 291/296 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/function-bind/index.js
<s> [webpack.Progress] 45% building 292/296 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/function-bind/index.js
<s> [webpack.Progress] 45% building 293/296 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/function-bind/index.js
<s> [webpack.Progress] 45% building 294/296 modules 2 active /home/fforres/github/pokedexchallenge/node_modules/function-bind/index.js
<s> [webpack.Progress] 45% building 295/296 modules 1 active /home/fforres/github/pokedexchallenge/node_modules/@fforres/pokemon-local-database/build/main/data/images_base64_thumbnail.json
<s> [webpack.Progress] 45% building 295/297 modules 2 active /home/fforres/github/pokedexchallenge/node_modules/mini-css-extract-plugin/dist/loader.js??ref--7-oneOf-3-0!/home/fforres/github/pokedexchallenge/node_modules/css-loader/dist/cjs.js??ref--7-oneOf-3-1!/home/fforres/github/pokedexchallenge/node_modules/postcss-loader/src/index.js??postcss!/home/fforres/github/pokedexchallenge/src/Componentes/Tipografia/index.css
<s> [webpack.Progress] 45% building 295/298 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/has-symbols/shams.js
<s> [webpack.Progress] 45% building 295/299 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.matchall/polyfill.js
<s> [webpack.Progress] 45% building 295/300 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.matchall/polyfill-regexp-matchall.js
<s> [webpack.Progress] 45% building 295/301 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/globalthis/polyfill.js
<s> [webpack.Progress] 45% building 295/302 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/array.prototype.flatmap/implementation.js
<s> [webpack.Progress] 45% building 295/303 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/symbol.prototype.description/implementation.js
<s> [webpack.Progress] 45% building 295/304 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/array.prototype.flat/implementation.js
<s> [webpack.Progress] 45% building 295/305 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/promise.allsettled/requirePromise.js
<s> [webpack.Progress] 45% building 295/306 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/promise.allsettled/polyfill.js
<s> [webpack.Progress] 45% building 295/307 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/object.fromentries/implementation.js
<s> [webpack.Progress] 45% building 295/308 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/helpers/assertRecord.js
<s> [webpack.Progress] 45% building 295/309 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/helpers/getOwnPropertyDescriptor.js
<s> [webpack.Progress] 45% building 295/310 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/IsArray.js
<s> [webpack.Progress] 45% building 295/311 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/IsRegExp.js
<s> [webpack.Progress] 45% building 295/312 modules 17 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToPropertyDescriptor.js
<s> [webpack.Progress] 45% building 295/313 modules 18 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/5/Type.js
<s> [webpack.Progress] 45% building 295/314 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToNumber.js
<s> [webpack.Progress] 45% building 296/314 modules 18 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToNumber.js
<s> [webpack.Progress] 45% building 297/314 modules 17 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToNumber.js
<s> [webpack.Progress] 45% building 298/314 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToNumber.js
<s> [webpack.Progress] 45% building 299/314 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToNumber.js
<s> [webpack.Progress] 46% building 300/314 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToNumber.js
<s> [webpack.Progress] 46% building 301/314 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToNumber.js
<s> [webpack.Progress] 46% building 302/314 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToNumber.js
<s> [webpack.Progress] 46% building 303/314 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToNumber.js
<s> [webpack.Progress] 46% building 304/314 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToNumber.js
<s> [webpack.Progress] 46% building 305/314 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToNumber.js
<s> [webpack.Progress] 46% building 306/314 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToNumber.js
<s> [webpack.Progress] 46% building 307/314 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToNumber.js
<s> [webpack.Progress] 46% building 308/314 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToNumber.js
<s> [webpack.Progress] 47% building 309/314 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToNumber.js
<s> [webpack.Progress] 47% building 310/314 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToNumber.js
<s> [webpack.Progress] 47% building 311/314 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToNumber.js
<s> [webpack.Progress] 47% building 312/314 modules 2 active /home/fforres/github/pokedexchallenge/node_modules/mini-css-extract-plugin/dist/loader.js??ref--7-oneOf-3-0!/home/fforres/github/pokedexchallenge/node_modules/css-loader/dist/cjs.js??ref--7-oneOf-3-1!/home/fforres/github/pokedexchallenge/node_modules/postcss-loader/src/index.js??postcss!/home/fforres/github/pokedexchallenge/src/Componentes/Tipografia/index.css
<s> [webpack.Progress] 47% building 312/315 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/dist/client/preview/url.js
<s> [webpack.Progress] 47% building 312/316 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core/dist/client/preview/NoDocs.js
<s> [webpack.Progress] 47% building 312/317 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/client-api/dist/index.js
<s> [webpack.Progress] 47% building 312/318 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/csf/dist/index.js
<s> [webpack.Progress] 47% building 312/319 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/function-bind/implementation.js
<s> [webpack.Progress] 47% building 312/320 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/globalthis/implementation.browser.js
<s> [webpack.Progress] 47% building 312/321 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/es-to-primitive/es2015.js
<s> [webpack.Progress] 47% building 312/322 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/IsCallable.js
<s> [webpack.Progress] 47% building 312/323 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/SpeciesConstructor.js
<s> [webpack.Progress] 47% building 312/324 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/Type.js
<s> [webpack.Progress] 47% building 312/325 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/has/src/index.js
<s> [webpack.Progress] 47% building 313/325 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/has/src/index.js
<s> [webpack.Progress] 47% building 314/325 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/has/src/index.js
<s> [webpack.Progress] 47% building 315/325 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/has/src/index.js
<s> [webpack.Progress] 47% building 316/325 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/has/src/index.js
<s> [webpack.Progress] 48% building 317/325 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/has/src/index.js
<s> [webpack.Progress] 48% building 318/325 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/has/src/index.js
<s> [webpack.Progress] 48% building 319/325 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/has/src/index.js
<s> [webpack.Progress] 48% building 320/325 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/has/src/index.js
<s> [webpack.Progress] 48% building 321/325 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/has/src/index.js
<s> [webpack.Progress] 48% building 322/325 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/has/src/index.js
<s> [webpack.Progress] 48% building 323/325 modules 2 active /home/fforres/github/pokedexchallenge/node_modules/has/src/index.js
<s> [webpack.Progress] 48% building 324/325 modules 1 active /home/fforres/github/pokedexchallenge/node_modules/mini-css-extract-plugin/dist/loader.js??ref--7-oneOf-3-0!/home/fforres/github/pokedexchallenge/node_modules/css-loader/dist/cjs.js??ref--7-oneOf-3-1!/home/fforres/github/pokedexchallenge/node_modules/postcss-loader/src/index.js??postcss!/home/fforres/github/pokedexchallenge/src/Componentes/Tipografia/index.css
<s> [webpack.Progress] 49% building 325/325 modules 0 active
<s> [webpack.Progress] 49% building 325/326 modules 1 active css /home/fforres/github/pokedexchallenge/node_modules/css-loader/dist/cjs.js??ref--7-oneOf-3-1!/home/fforres/github/pokedexchallenge/node_modules/postcss-loader/src/index.js??postcss!/home/fforres/github/pokedexchallenge/src/Componentes/Tipografia/index.css 0
<s> [webpack.Progress] 49% building 326/326 modules 0 active
<s> [webpack.Progress] 49% building 326/327 modules 1 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.array.every.js
<s> [webpack.Progress] 49% building 326/328 modules 2 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.array.filter.js
<s> [webpack.Progress] 49% building 326/329 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.array.for-each.js
<s> [webpack.Progress] 49% building 326/330 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.array.from.js
<s> [webpack.Progress] 49% building 326/331 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.array.index-of.js
<s> [webpack.Progress] 49% building 326/332 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.array.is-array.js
<s> [webpack.Progress] 49% building 326/333 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.array.map.js
<s> [webpack.Progress] 49% building 326/334 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.date.to-string.js
<s> [webpack.Progress] 49% building 326/335 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.function.name.js
<s> [webpack.Progress] 49% building 326/336 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.map.js
<s> [webpack.Progress] 49% building 326/337 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.object.assign.js
<s> [webpack.Progress] 49% building 326/338 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.object.keys.js
<s> [webpack.Progress] 49% building 326/339 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.regexp.to-string.js
<s> [webpack.Progress] 49% building 326/340 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/web.dom-collections.for-each.js
<s> [webpack.Progress] 49% building 326/341 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.matchall/implementation.js
<s> [webpack.Progress] 49% building 326/342 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.matchall/regexp-matchall.js
<s> [webpack.Progress] 49% building 326/343 modules 17 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ArraySpeciesCreate.js
<s> [webpack.Progress] 49% building 326/344 modules 18 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/FlattenIntoArray.js
<s> [webpack.Progress] 49% building 326/345 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/Get.js
<s> [webpack.Progress] 49% building 326/346 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/helpers/getSymbolDescription.js
<s> [webpack.Progress] 49% building 326/347 modules 21 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/AddEntriesFromIterable.js
<s> [webpack.Progress] 49% building 326/348 modules 22 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/CreateDataPropertyOrThrow.js
<s> [webpack.Progress] 49% building 326/349 modules 23 active /home/fforres/github/pokedexchallenge/node_modules/promise.allsettled/implementation.js
<s> [webpack.Progress] 49% building 326/350 modules 24 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToPropertyKey.js
<s> [webpack.Progress] 49% building 326/351 modules 25 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToBoolean.js
<s> [webpack.Progress] 49% building 326/352 modules 26 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToPrimitive.js
<s> [webpack.Progress] 49% building 327/352 modules 25 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToPrimitive.js
<s> [webpack.Progress] 49% building 328/352 modules 24 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToPrimitive.js
<s> [webpack.Progress] 49% building 329/352 modules 23 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToPrimitive.js
<s> [webpack.Progress] 49% building 330/352 modules 22 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToPrimitive.js
<s> [webpack.Progress] 49% building 331/352 modules 21 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToPrimitive.js
<s> [webpack.Progress] 49% building 332/352 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToPrimitive.js
<s> [webpack.Progress] 49% building 333/352 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToPrimitive.js
<s> [webpack.Progress] 50% building 334/352 modules 18 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToPrimitive.js
<s> [webpack.Progress] 50% building 335/352 modules 17 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToPrimitive.js
<s> [webpack.Progress] 50% building 336/352 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToPrimitive.js
<s> [webpack.Progress] 50% building 337/352 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToPrimitive.js
<s> [webpack.Progress] 50% building 338/352 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToPrimitive.js
<s> [webpack.Progress] 50% building 339/352 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToPrimitive.js
<s> [webpack.Progress] 50% building 340/352 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToPrimitive.js
<s> [webpack.Progress] 50% building 341/352 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToPrimitive.js
<s> [webpack.Progress] 51% building 342/352 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToPrimitive.js
<s> [webpack.Progress] 51% building 343/352 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToPrimitive.js
<s> [webpack.Progress] 51% building 344/352 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToPrimitive.js
<s> [webpack.Progress] 51% building 345/352 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToPrimitive.js
<s> [webpack.Progress] 51% building 346/352 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToPrimitive.js
<s> [webpack.Progress] 51% building 347/352 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToPrimitive.js
<s> [webpack.Progress] 51% building 348/352 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToPrimitive.js
<s> [webpack.Progress] 51% building 349/352 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToPrimitive.js
<s> [webpack.Progress] 52% building 350/352 modules 2 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToPrimitive.js
<s> [webpack.Progress] 52% building 351/352 modules 1 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ToPrimitive.js
<s> [webpack.Progress] 52% building 351/353 modules 2 active /home/fforres/github/pokedexchallenge/node_modules/util-deprecate/browser.js
<s> [webpack.Progress] 52% building 351/354 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/babel-loader/lib/index.js??ref--7-oneOf-1!/home/fforres/github/pokedexchallenge/node_modules/react-scripts/node_modules/eslint-loader/dist/cjs.js??ref--6-0!/home/fforres/github/pokedexchallenge/src/Componentes/Svgs/index.jsx
<s> [webpack.Progress] 52% building 352/354 modules 2 active /home/fforres/github/pokedexchallenge/node_modules/babel-loader/lib/index.js??ref--7-oneOf-1!/home/fforres/github/pokedexchallenge/node_modules/react-scripts/node_modules/eslint-loader/dist/cjs.js??ref--6-0!/home/fforres/github/pokedexchallenge/src/Componentes/Svgs/index.jsx
<s> [webpack.Progress] 52% building 352/355 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/ansi-to-html/lib/ansi_to_html.js
<s> [webpack.Progress] 52% building 352/356 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/addons/dist/public_api.js
<s> [webpack.Progress] 52% building 352/357 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/channel-postmessage/dist/index.js
<s> [webpack.Progress] 52% building 352/358 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/client-logger/dist/index.js
<s> [webpack.Progress] 52% building 352/359 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/core-events/dist/index.js
<s> [webpack.Progress] 52% building 352/360 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/client-api/dist/client_api.js
<s> [webpack.Progress] 52% building 352/361 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/client-api/dist/story_store.js
<s> [webpack.Progress] 52% building 352/362 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/client-api/dist/config_api.js
<s> [webpack.Progress] 52% building 352/363 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/client-api/dist/subscriptions_store.js
<s> [webpack.Progress] 52% building 352/364 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/client-api/dist/pathToId.js
<s> [webpack.Progress] 52% building 352/365 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/client-api/dist/queryparams.js
<s> [webpack.Progress] 52% building 352/366 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/client-api/dist/hooks.js
<s> [webpack.Progress] 52% building 352/367 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/GetIntrinsic.js
<s> [webpack.Progress] 52% building 352/368 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/IsConstructor.js
<s> [webpack.Progress] 52% building 353/368 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/IsConstructor.js
<s> [webpack.Progress] 52% building 353/369 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/es-to-primitive/helpers/isPrimitive.js
<s> [webpack.Progress] 52% building 353/370 modules 17 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/5/Type.js
<s> [webpack.Progress] 52% building 354/370 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/5/Type.js
<s> [webpack.Progress] 52% building 355/370 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/5/Type.js
<s> [webpack.Progress] 52% building 356/370 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/5/Type.js
<s> [webpack.Progress] 52% building 357/370 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/5/Type.js
<s> [webpack.Progress] 52% building 358/370 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/5/Type.js
<s> [webpack.Progress] 53% building 359/370 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/5/Type.js
<s> [webpack.Progress] 53% building 360/370 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/5/Type.js
<s> [webpack.Progress] 53% building 361/370 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/5/Type.js
<s> [webpack.Progress] 53% building 362/370 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/5/Type.js
<s> [webpack.Progress] 53% building 363/370 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/5/Type.js
<s> [webpack.Progress] 53% building 364/370 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/5/Type.js
<s> [webpack.Progress] 53% building 365/370 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/5/Type.js
<s> [webpack.Progress] 53% building 365/371 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/lodash/startCase.js
<s> [webpack.Progress] 53% building 366/371 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/lodash/startCase.js
<s> [webpack.Progress] 54% building 367/371 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/lodash/startCase.js
<s> [webpack.Progress] 54% building 367/372 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.regexp.exec.js
<s> [webpack.Progress] 54% building 367/373 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.string.match.js
<s> [webpack.Progress] 54% building 367/374 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.string.search.js
<s> [webpack.Progress] 54% building 367/375 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/is-regex/index.js
<s> [webpack.Progress] 54% building 367/376 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/array-method-is-strict.js
<s> [webpack.Progress] 54% building 367/377 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/array-method-uses-to-length.js
<s> [webpack.Progress] 54% building 367/378 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/array-for-each.js
<s> [webpack.Progress] 54% building 367/379 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/array-from.js
<s> [webpack.Progress] 54% building 367/380 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/collection.js
<s> [webpack.Progress] 54% building 367/381 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/collection-strong.js
<s> [webpack.Progress] 54% building 367/382 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/object-assign.js
<s> [webpack.Progress] 54% building 367/383 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/regexp-flags.js
<s> [webpack.Progress] 54% building 368/383 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/regexp-flags.js
<s> [webpack.Progress] 54% building 369/383 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/regexp-flags.js
<s> [webpack.Progress] 54% building 369/384 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/Call.js
<s> [webpack.Progress] 54% building 369/385 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/GetMethod.js
<s> [webpack.Progress] 54% building 369/386 modules 17 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/IsConstructor.js
<s> [webpack.Progress] 54% building 369/387 modules 18 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/HasProperty.js
<s> [webpack.Progress] 54% building 369/388 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/IsInteger.js
<s> [webpack.Progress] 54% building 369/389 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/Set.js
<s> [webpack.Progress] 54% building 369/390 modules 21 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/SpeciesConstructor.js
<s> [webpack.Progress] 54% building 369/391 modules 22 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/GetIterator.js
<s> [webpack.Progress] 54% building 369/392 modules 23 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/IteratorClose.js
<s> [webpack.Progress] 54% building 369/393 modules 24 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/IteratorValue.js
<s> [webpack.Progress] 54% building 369/394 modules 25 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/IteratorStep.js
<s> [webpack.Progress] 54% building 369/395 modules 26 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/PromiseResolve.js
<s> [webpack.Progress] 54% building 370/395 modules 25 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/PromiseResolve.js
<s> [webpack.Progress] 54% building 371/395 modules 24 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/PromiseResolve.js
<s> [webpack.Progress] 54% building 372/395 modules 23 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/PromiseResolve.js
<s> [webpack.Progress] 54% building 373/395 modules 22 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/PromiseResolve.js
<s> [webpack.Progress] 54% building 373/396 modules 23 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js
<s> [webpack.Progress] 54% building 374/396 modules 22 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js
<s> [webpack.Progress] 54% building 375/396 modules 21 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js
<s> [webpack.Progress] 55% building 376/396 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js
<s> [webpack.Progress] 55% building 377/396 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js
<s> [webpack.Progress] 55% building 378/396 modules 18 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js
<s> [webpack.Progress] 55% building 379/396 modules 17 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js
<s> [webpack.Progress] 55% building 380/396 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js
<s> [webpack.Progress] 55% building 381/396 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js
<s> [webpack.Progress] 55% building 382/396 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js
<s> [webpack.Progress] 55% building 383/396 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js
<s> [webpack.Progress] 56% building 384/396 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js
<s> [webpack.Progress] 56% building 385/396 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js
<s> [webpack.Progress] 56% building 386/396 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js
<s> [webpack.Progress] 56% building 387/396 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js
<s> [webpack.Progress] 56% building 388/396 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js
<s> [webpack.Progress] 56% building 389/396 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js
<s> [webpack.Progress] 56% building 390/396 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js
<s> [webpack.Progress] 56% building 391/396 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js
<s> [webpack.Progress] 57% building 392/396 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js
<s> [webpack.Progress] 57% building 393/396 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js
<s> [webpack.Progress] 57% building 394/396 modules 2 active /home/fforres/github/pokedexchallenge/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js
<s> [webpack.Progress] 57% building 394/397 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/is-date-object/index.js
<s> [webpack.Progress] 57% building 394/398 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/is-symbol/index.js
<s> [webpack.Progress] 57% building 395/398 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/is-symbol/index.js
<s> [webpack.Progress] 57% building 395/399 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/is-callable/index.js
<s> [webpack.Progress] 57% building 395/400 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/qs/lib/index.js
<s> [webpack.Progress] 57% building 395/401 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/addons/dist/index.js
<s> [webpack.Progress] 57% building 395/402 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/addons/dist/make-decorator.js
<s> [webpack.Progress] 57% building 395/403 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/addons/dist/storybook-channel-mock.js
<s> [webpack.Progress] 57% building 395/404 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/addons/dist/types.js
<s> [webpack.Progress] 57% building 395/405 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/addons/dist/hooks.js
<s> [webpack.Progress] 57% building 395/406 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.function.bind.js
<s> [webpack.Progress] 57% building 395/407 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.number.constructor.js
<s> [webpack.Progress] 57% building 395/408 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.number.is-integer.js
<s> [webpack.Progress] 57% building 396/408 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.number.is-integer.js
<s> [webpack.Progress] 57% building 396/409 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/DefinePropertyOrThrow.js
<s> [webpack.Progress] 57% building 397/409 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/DefinePropertyOrThrow.js
<s> [webpack.Progress] 57% building 398/409 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/DefinePropertyOrThrow.js
<s> [webpack.Progress] 57% building 399/409 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/DefinePropertyOrThrow.js
<s> [webpack.Progress] 57% building 400/409 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/DefinePropertyOrThrow.js
<s> [webpack.Progress] 58% building 401/409 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/DefinePropertyOrThrow.js
<s> [webpack.Progress] 58% building 402/409 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/DefinePropertyOrThrow.js
<s> [webpack.Progress] 58% building 403/409 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/DefinePropertyOrThrow.js
<s> [webpack.Progress] 58% building 404/409 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/DefinePropertyOrThrow.js
<s> [webpack.Progress] 58% building 405/409 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/DefinePropertyOrThrow.js
<s> [webpack.Progress] 58% building 406/409 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/DefinePropertyOrThrow.js
<s> [webpack.Progress] 58% building 407/409 modules 2 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/DefinePropertyOrThrow.js
<s> [webpack.Progress] 58% building 408/409 modules 1 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/DefinePropertyOrThrow.js
<s> [webpack.Progress] 58% building 408/410 modules 2 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.array.find.js
<s> [webpack.Progress] 58% building 408/411 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/lodash/_createCompounder.js
<s> [webpack.Progress] 58% building 408/412 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/regexp-exec.js
<s> [webpack.Progress] 58% building 408/413 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/regexp.prototype.flags/index.js
<s> [webpack.Progress] 58% building 408/414 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/fix-regexp-well-known-symbol-logic.js
<s> [webpack.Progress] 58% building 408/415 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/object-inspect/index.js
<s> [webpack.Progress] 58% building 408/416 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/iterate-value/index.js
<s> [webpack.Progress] 58% building 408/417 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/array.prototype.map/index.js
<s> [webpack.Progress] 59% building 409/417 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/array.prototype.map/index.js
<s> [webpack.Progress] 59% building 409/418 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/regexp-exec-abstract.js
<s> [webpack.Progress] 59% building 409/419 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/same-value.js
<s> [webpack.Progress] 59% building 409/420 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/advance-string-index.js
<s> [webpack.Progress] 59% building 409/421 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/inherit-if-required.js
<s> [webpack.Progress] 59% building 409/422 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/internal-metadata.js
<s> [webpack.Progress] 59% building 409/423 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/lodash/upperFirst.js
<s> [webpack.Progress] 59% building 409/424 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/GetV.js
<s> [webpack.Progress] 59% building 409/425 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.object.entries.js
<s> [webpack.Progress] 59% building 409/426 modules 17 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/AdvanceStringIndex.js
<s> [webpack.Progress] 59% building 409/427 modules 18 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/helpers/getIteratorMethod.js
<s> [webpack.Progress] 59% building 409/428 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/IteratorComplete.js
<s> [webpack.Progress] 59% building 409/429 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/IteratorNext.js
<s> [webpack.Progress] 59% building 410/429 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/IteratorNext.js
<s> [webpack.Progress] 59% building 410/430 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/lodash/get.js
<s> [webpack.Progress] 59% building 410/431 modules 21 active /home/fforres/github/pokedexchallenge/node_modules/lodash/isEqual.js
<s> [webpack.Progress] 59% building 410/432 modules 22 active /home/fforres/github/pokedexchallenge/node_modules/lodash/mergeWith.js
<s> [webpack.Progress] 59% building 411/432 modules 21 active /home/fforres/github/pokedexchallenge/node_modules/lodash/mergeWith.js
<s> [webpack.Progress] 59% building 412/432 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/lodash/mergeWith.js
<s> [webpack.Progress] 59% building 412/433 modules 21 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.array.reduce.js
<s> [webpack.Progress] 59% building 412/434 modules 22 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.array.slice.js
<s> [webpack.Progress] 59% building 412/435 modules 23 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.array.sort.js
<s> [webpack.Progress] 59% building 412/436 modules 24 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/web.timers.js
<s> [webpack.Progress] 59% building 413/436 modules 23 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/web.timers.js
<s> [webpack.Progress] 59% building 414/436 modules 22 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/web.timers.js
<s> [webpack.Progress] 59% building 415/436 modules 21 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/web.timers.js
<s> [webpack.Progress] 59% building 416/436 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/web.timers.js
<s> [webpack.Progress] 60% building 417/436 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/web.timers.js
<s> [webpack.Progress] 60% building 418/436 modules 18 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/web.timers.js
<s> [webpack.Progress] 60% building 419/436 modules 17 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/web.timers.js
<s> [webpack.Progress] 60% building 420/436 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/web.timers.js
<s> [webpack.Progress] 60% building 421/436 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/web.timers.js
<s> [webpack.Progress] 60% building 422/436 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/web.timers.js
<s> [webpack.Progress] 60% building 423/436 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/web.timers.js
<s> [webpack.Progress] 60% building 424/436 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/web.timers.js
<s> [webpack.Progress] 61% building 425/436 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/web.timers.js
<s> [webpack.Progress] 61% building 426/436 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/web.timers.js
<s> [webpack.Progress] 61% building 427/436 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/web.timers.js
<s> [webpack.Progress] 61% building 428/436 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/web.timers.js
<s> [webpack.Progress] 61% building 429/436 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/web.timers.js
<s> [webpack.Progress] 61% building 429/437 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/entities/index.js
<s> [webpack.Progress] 61% building 430/437 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/entities/index.js
<s> [webpack.Progress] 61% building 431/437 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/entities/index.js
<s> [webpack.Progress] 61% building 432/437 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/entities/index.js
<s> [webpack.Progress] 61% building 433/437 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/entities/index.js
<s> [webpack.Progress] 62% building 434/437 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/entities/index.js
<s> [webpack.Progress] 62% building 435/437 modules 2 active /home/fforres/github/pokedexchallenge/node_modules/entities/index.js
<s> [webpack.Progress] 62% building 436/437 modules 1 active /home/fforres/github/pokedexchallenge/node_modules/entities/index.js
<s> [webpack.Progress] 62% building 436/438 modules 2 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/RegExpExec.js
<s> [webpack.Progress] 62% building 436/439 modules 3 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.array.some.js
<s> [webpack.Progress] 62% building 436/440 modules 4 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/ObjectCreate.js
<s> [webpack.Progress] 62% building 436/441 modules 5 active /home/fforres/github/pokedexchallenge/node_modules/qs/lib/stringify.js
<s> [webpack.Progress] 62% building 436/442 modules 6 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/string-trim.js
<s> [webpack.Progress] 62% building 436/443 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/is-integer.js
<s> [webpack.Progress] 62% building 436/444 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/function-bind.js
<s> [webpack.Progress] 62% building 436/445 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/channels/dist/index.js
<s> [webpack.Progress] 62% building 436/446 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/telejson/dist/index.js
<s> [webpack.Progress] 62% building 436/447 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.object.values.js
<s> [webpack.Progress] 62% building 436/448 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.weak-map.js
<s> [webpack.Progress] 62% building 436/449 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.string.includes.js
<s> [webpack.Progress] 62% building 436/450 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/client-api/node_modules/is-plain-object/index.es.js
<s> [webpack.Progress] 62% building 437/450 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/@storybook/client-api/node_modules/is-plain-object/index.es.js
<s> [webpack.Progress] 62% building 437/451 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.set.js
<s> [webpack.Progress] 62% building 437/452 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.array.includes.js
<s> [webpack.Progress] 62% building 437/453 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/ToPropertyDescriptor.js
<s> [webpack.Progress] 62% building 437/454 modules 17 active /home/fforres/github/pokedexchallenge/node_modules/babel-loader/lib/index.js??ref--7-oneOf-1!/home/fforres/github/pokedexchallenge/node_modules/react-scripts/node_modules/eslint-loader/dist/cjs.js??ref--6-0!/home/fforres/github/pokedexchallenge/src/Componentes/Svgs/estrella.jsx
<s> [webpack.Progress] 62% building 437/455 modules 18 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/SameValue.js
<s> [webpack.Progress] 62% building 437/456 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/IsPropertyKey.js
<s> [webpack.Progress] 62% building 437/457 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/IsDataDescriptor.js
<s> [webpack.Progress] 62% building 438/457 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/IsDataDescriptor.js
<s> [webpack.Progress] 62% building 439/457 modules 18 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/IsDataDescriptor.js
<s> [webpack.Progress] 62% building 439/458 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/IsAccessorDescriptor.js
<s> [webpack.Progress] 62% building 440/458 modules 18 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/IsAccessorDescriptor.js
<s> [webpack.Progress] 62% building 441/458 modules 17 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/IsAccessorDescriptor.js
<s> [webpack.Progress] 63% building 442/458 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/IsAccessorDescriptor.js
<s> [webpack.Progress] 63% building 443/458 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/IsAccessorDescriptor.js
<s> [webpack.Progress] 63% building 444/458 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/IsAccessorDescriptor.js
<s> [webpack.Progress] 63% building 445/458 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/IsAccessorDescriptor.js
<s> [webpack.Progress] 63% building 446/458 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/IsAccessorDescriptor.js
<s> [webpack.Progress] 63% building 446/459 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/FromPropertyDescriptor.js
<s> [webpack.Progress] 63% building 446/460 modules 14 active ignored /home/fforres/github/pokedexchallenge/node_modules/object-inspect ./util.inspect
<s> [webpack.Progress] 63% building 447/460 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/2018/FromPropertyDescriptor.js
<s> [webpack.Progress] 63% building 447/461 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/qs/lib/formats.js
<s> [webpack.Progress] 63% building 448/461 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/qs/lib/formats.js
<s> [webpack.Progress] 63% building 448/462 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/qs/lib/parse.js
<s> [webpack.Progress] 63% building 449/462 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/qs/lib/parse.js
<s> [webpack.Progress] 64% building 450/462 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/qs/lib/parse.js
<s> [webpack.Progress] 64% building 450/463 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/CreateIterResultObject.js
<s> [webpack.Progress] 64% building 450/464 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/lodash/_arrayReduce.js
<s> [webpack.Progress] 64% building 450/465 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/regexp-sticky-helpers.js
<s> [webpack.Progress] 64% building 451/465 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/regexp-sticky-helpers.js
<s> [webpack.Progress] 64% building 451/466 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/lodash/deburr.js
<s> [webpack.Progress] 64% building 451/467 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/lodash/words.js
<s> [webpack.Progress] 64% building 451/468 modules 17 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/helpers/DefineOwnProperty.js
<s> [webpack.Progress] 64% building 451/469 modules 18 active /home/fforres/github/pokedexchallenge/node_modules/promise.prototype.finally/node_modules/es-abstract/helpers/isPropertyDescriptor.js
<s> [webpack.Progress] 64% building 451/470 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/regexp.prototype.flags/implementation.js
<s> [webpack.Progress] 64% building 451/471 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/regexp.prototype.flags/polyfill.js
<s> [webpack.Progress] 64% building 451/472 modules 21 active /home/fforres/github/pokedexchallenge/node_modules/regexp.prototype.flags/shim.js
<s> [webpack.Progress] 64% building 452/472 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/regexp.prototype.flags/shim.js
<s> [webpack.Progress] 64% building 453/472 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/regexp.prototype.flags/shim.js
<s> [webpack.Progress] 64% building 453/473 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/array.prototype.map/implementation.js
<s> [webpack.Progress] 64% building 453/474 modules 21 active /home/fforres/github/pokedexchallenge/node_modules/array.prototype.map/polyfill.js
<s> [webpack.Progress] 64% building 453/475 modules 22 active /home/fforres/github/pokedexchallenge/node_modules/array.prototype.map/shim.js
<s> [webpack.Progress] 64% building 454/475 modules 21 active /home/fforres/github/pokedexchallenge/node_modules/array.prototype.map/shim.js
<s> [webpack.Progress] 64% building 455/475 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/array.prototype.map/shim.js
<s> [webpack.Progress] 64% building 456/475 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/array.prototype.map/shim.js
<s> [webpack.Progress] 64% building 456/476 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/freezing.js
<s> [webpack.Progress] 64% building 457/476 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/freezing.js
<s> [webpack.Progress] 64% building 457/477 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/lodash/_createCaseFirst.js
<s> [webpack.Progress] 64% building 457/478 modules 21 active /home/fforres/github/pokedexchallenge/node_modules/entities/lib/encode.js
<s> [webpack.Progress] 64% building 457/479 modules 22 active /home/fforres/github/pokedexchallenge/node_modules/entities/lib/decode.js
<s> [webpack.Progress] 64% building 458/479 modules 21 active /home/fforres/github/pokedexchallenge/node_modules/entities/lib/decode.js
<s> [webpack.Progress] 65% building 459/479 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/entities/lib/decode.js
<s> [webpack.Progress] 65% building 459/480 modules 21 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/object-to-array.js
<s> [webpack.Progress] 65% building 459/481 modules 22 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/Invoke.js
<s> [webpack.Progress] 65% building 460/481 modules 21 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/Invoke.js
<s> [webpack.Progress] 65% building 461/481 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/Invoke.js
<s> [webpack.Progress] 65% building 462/481 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/es-abstract/2019/Invoke.js
<s> [webpack.Progress] 65% building 462/482 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/lodash/_baseGet.js
<s> [webpack.Progress] 65% building 462/483 modules 21 active /home/fforres/github/pokedexchallenge/node_modules/lodash/_baseIsEqual.js
<s> [webpack.Progress] 65% building 462/484 modules 22 active /home/fforres/github/pokedexchallenge/node_modules/lodash/_baseMerge.js
<s> [webpack.Progress] 65% building 462/485 modules 23 active /home/fforres/github/pokedexchallenge/node_modules/lodash/_createAssigner.js
<s> [webpack.Progress] 65% building 463/485 modules 22 active /home/fforres/github/pokedexchallenge/node_modules/lodash/_createAssigner.js
<s> [webpack.Progress] 65% building 463/486 modules 23 active /home/fforres/github/pokedexchallenge/node_modules/internal-slot/index.js
<s> [webpack.Progress] 65% building 464/486 modules 22 active /home/fforres/github/pokedexchallenge/node_modules/internal-slot/index.js
<s> [webpack.Progress] 65% building 465/486 modules 21 active /home/fforres/github/pokedexchallenge/node_modules/internal-slot/index.js
<s> [webpack.Progress] 65% building 466/486 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/internal-slot/index.js
<s> [webpack.Progress] 65% building 466/487 modules 21 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/array-reduce.js
<s> [webpack.Progress] 66% building 467/487 modules 20 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/array-reduce.js
<s> [webpack.Progress] 66% building 468/487 modules 19 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/array-reduce.js
<s> [webpack.Progress] 66% building 469/487 modules 18 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/array-reduce.js
<s> [webpack.Progress] 66% building 470/487 modules 17 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/array-reduce.js
<s> [webpack.Progress] 66% building 471/487 modules 16 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/array-reduce.js
<s> [webpack.Progress] 66% building 472/487 modules 15 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/array-reduce.js
<s> [webpack.Progress] 66% building 473/487 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/array-reduce.js
<s> [webpack.Progress] 66% building 474/487 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/array-reduce.js
<s> [webpack.Progress] 67% building 475/487 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/array-reduce.js
<s> [webpack.Progress] 67% building 476/487 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/array-reduce.js
<s> [webpack.Progress] 67% building 477/487 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/array-reduce.js
<s> [webpack.Progress] 67% building 478/487 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/core-js/internals/array-reduce.js
<s> [webpack.Progress] 67% building 478/488 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/timers-browserify/main.js
<s> [webpack.Progress] 67% building 478/489 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/lodash/debounce.js
<s> [webpack.Progress] 67% building 478/490 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.string.replace.js
<s> [webpack.Progress] 67% building 478/491 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.object.freeze.js
<s> [webpack.Progress] 67% building 478/492 modules 14 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.object.define-properties.js
<s> [webpack.Progress] 67% building 479/492 modules 13 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.object.define-properties.js
<s> [webpack.Progress] 67% building 480/492 modules 12 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.object.define-properties.js
<s> [webpack.Progress] 67% building 481/492 modules 11 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.object.define-properties.js
<s> [webpack.Progress] 67% building 482/492 modules 10 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.object.define-properties.js
<s> [webpack.Progress] 67% building 483/492 modules 9 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.object.define-properties.js
<s> [webpack.Progress] 68% building 484/492 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.object.define-properties.js
<s> [webpack.Progress] 68% building 485/492 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/core-js/modules/es.object.define-properties.js
<s> [webpack.Progress] 68% building 485/493 modules 8 active /home/fforres/github/pokedexchallenge/node_modules/entities/lib/decode_codepoint.js
<s> [webpack.Progress] 68% building 486/493 modules 7 active /home/fforres/github/pokedexchallenge/node_modules/entities/lib/decode_codepoint.js