-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnohup.out
982 lines (968 loc) · 51.1 KB
/
nohup.out
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
yarn run v1.22.19
warning From Yarn 1.0 onwards, scripts don't require "--" for options to be forwarded. In a future version, any explicit "--" will be forwarded as-is to the scripts.
$ vue-cli-service serve --port 80
INFO Starting development server...
[3%] setup (watch run)
[2K[1A[2K[G[3%] setup (watch run webpack-dev-middleware)
[2K[1A[2K[G[3%] setup (watch run)
[2K[1A[2K[G[4%] setup (normal module factory)
[2K[1A[2K[G[4%] setup (normal module factory CaseSensitivePathsPlugin)
[2K[1A[2K[G[4%] setup (normal module factory)
[2K[1A[2K[G[5%] setup (context module factory)
[2K[1A[2K[G[6%] setup (before compile)
[2K[1A[2K[G[6%] setup (before compile ProgressPlugin)
[2K[1A[2K[G[6%] setup (before compile)
[2K[1A[2K[G[7%] setup (compile)
[2K[1A[2K[G[7%] setup (compile ExternalsPlugin)
[2K[1A[2K[G[7%] setup (compile)
[2K[1A[2K[G[8%] setup (compilation)
[2K[1A[2K[G[8%] setup (compilation CopyPlugin)
[2K[1A[2K[G[8%] setup (compilation ArrayPushCallbackChunkFormatPlugin)
[2K[1A[2K[G[8%] setup (compilation JsonpChunkLoadingPlugin)
[2K[1A[2K[G[8%] setup (compilation StartupChunkDependenciesPlugin)
[2K[1A[2K[G[8%] setup (compilation ImportScriptsChunkLoadingPlugin)
[2K[1A[2K[G[8%] setup (compilation FetchCompileWasmPlugin)
[2K[1A[2K[G[8%] setup (compilation FetchCompileAsyncWasmPlugin)
[2K[1A[2K[G[8%] setup (compilation WorkerPlugin)
[2K[1A[2K[G[8%] setup (compilation SplitChunksPlugin)
[2K[1A[2K[G[8%] setup (compilation ResolverCachePlugin)
[2K[1A[2K[G[8%] setup (compilation HtmlWebpackPlugin)
[2K[1A[2K[G[8%] setup (compilation)
[2K[1A[2K[G[9%] setup (compilation)
[2K[1A[2K[G[9%] setup (compilation vue-loader-plugin)
[2K[1A[2K[G[9%] setup (compilation DefinePlugin)
[2K[1A[2K[G[9%] setup (compilation ProgressPlugin)
[2K[1A[2K[G[9%] setup (compilation EntryPlugin)
[2K[1A[2K[G[9%] setup (compilation ChunkPrefetchPreloadPlugin)
[2K[1A[2K[G[9%] setup (compilation ModuleInfoHeaderPlugin)
[2K[1A[2K[G[9%] setup (compilation EvalSourceMapDevToolPlugin)
[2K[1A[2K[G[9%] setup (compilation JavascriptModulesPlugin)
[2K[1A[2K[G[9%] setup (compilation JsonModulesPlugin)
[2K[1A[2K[G[9%] setup (compilation AssetModulesPlugin)
[2K[1A[2K[G[9%] setup (compilation EntryPlugin)
[2K[1A[2K[G[9%] setup (compilation RuntimePlugin)
[2K[1A[2K[G[9%] setup (compilation InferAsyncModulesPlugin)
[2K[1A[2K[G[9%] setup (compilation DataUriPlugin)
[2K[1A[2K[G[9%] setup (compilation FileUriPlugin)
[2K[1A[2K[G[9%] setup (compilation CompatibilityPlugin)
[2K[1A[2K[G[9%] setup (compilation HarmonyModulesPlugin)
[2K[1A[2K[G[9%] setup (compilation AMDPlugin)
[2K[1A[2K[G[9%] setup (compilation RequireJsStuffPlugin)
[2K[1A[2K[G[9%] setup (compilation CommonJsPlugin)
[2K[1A[2K[G[9%] setup (compilation LoaderPlugin)
[2K[1A[2K[G[9%] setup (compilation NodeStuffPlugin)
[2K[1A[2K[G[9%] setup (compilation APIPlugin)
[2K[1A[2K[G[9%] setup (compilation ExportsInfoApiPlugin)
[2K[1A[2K[G[9%] setup (compilation WebpackIsIncludedPlugin)
[2K[1A[2K[G[9%] setup (compilation ConstPlugin)
[2K[1A[2K[G[9%] setup (compilation UseStrictPlugin)
[2K[1A[2K[G[9%] setup (compilation RequireIncludePlugin)
[2K[1A[2K[G[9%] setup (compilation RequireEnsurePlugin)
[2K[1A[2K[G[9%] setup (compilation RequireContextPlugin)
[2K[1A[2K[G[9%] setup (compilation ImportPlugin)
[2K[1A[2K[G[9%] setup (compilation RequireContextPlugin)
[2K[1A[2K[G[9%] setup (compilation SystemPlugin)
[2K[1A[2K[G[9%] setup (compilation ImportMetaPlugin)
[2K[1A[2K[G[9%] setup (compilation URLPlugin)
[2K[1A[2K[G[9%] setup (compilation DefaultStatsFactoryPlugin)
[2K[1A[2K[G[9%] setup (compilation DefaultStatsPresetPlugin)
[2K[1A[2K[G[9%] setup (compilation DefaultStatsPrinterPlugin)
[2K[1A[2K[G[9%] setup (compilation JavascriptMetaInfoPlugin)
[2K[1A[2K[G[9%] setup (compilation EnsureChunkConditionsPlugin)
[2K[1A[2K[G[9%] setup (compilation RemoveEmptyChunksPlugin)
[2K[1A[2K[G[9%] setup (compilation MergeDuplicateChunksPlugin)
[2K[1A[2K[G[9%] setup (compilation SideEffectsFlagPlugin)
[2K[1A[2K[G[9%] setup (compilation FlagDependencyExportsPlugin)
[2K[1A[2K[G[9%] setup (compilation NamedModuleIdsPlugin)
[2K[1A[2K[G[9%] setup (compilation NamedChunkIdsPlugin)
[2K[1A[2K[G[9%] setup (compilation DefinePlugin)
[2K[1A[2K[G[9%] setup (compilation TemplatedPathPlugin)
[2K[1A[2K[G[9%] setup (compilation RecordIdsPlugin)
[2K[1A[2K[G[9%] setup (compilation WarnCaseSensitiveModulesPlugin)
[2K[1A[2K[G[9%] setup (compilation EntryPlugin)
[2K[1A[2K[G[9%] setup (compilation ProvidePlugin)
[2K[1A[2K[G[9%] setup (compilation HotModuleReplacementPlugin)
[2K[1A[2K[G[9%] setup (compilation ProgressPlugin)
[2K[1A[2K[G[9%] setup (compilation)
[2K[1A[2K[G[10%] building
[2K[1A[2K[G[10%] building (0/0 modules)
[2K[1A[2K[G[10%] building (import loader babel-loader/lib/index.js)
[2K[1A[2K[G[10%] building (0/1 modules)
[2K[1A[2K[G[24%] building (3/8 modules)
[2K[1A[2K[G[24%] building (import loader vue-loader/dist/index.js)
[2K[1A[2K[G[24%] building (3/17 modules)
[2K[1A[2K[G[24%] building (import loader vue-style-loader/index.js)
[2K[1A[2K[G[24%] building (import loader css-loader/dist/cjs.js)
[2K[1A[2K[G[24%] building (import loader postcss-loader/dist/cjs.js)
[2K[1A[2K[G[24%] building (3/25 modules)
[2K[1A[2K[G[24%] building (import loader vue-loader/dist/pitcher.js)
[2K[1A[2K[G[24%] building (3/38 modules)
[2K[1A[2K[G[24%] building (import loader vue-loader/dist/templateLoader.js)
[2K[1A[2K[G[24%] building (3/38 modules)
[2K[1A[2K[G[24%] building (7/174 modules)
[2K[1A[2K[G[24%] building (8/400 modules)
[2K[1A[2K[G[24%] building (19/433 modules)
[2K[1A[2K[G[38%] building (22/459 modules)
[2K[1A[2K[G[38%] building (28/477 modules)
[2K[1A[2K[G[38%] building (30/564 modules)
[2K[1A[2K[G[38%] building (55/629 modules)
[2K[1A[2K[G[38%] building (87/949 modules)
[2K[1A[2K[G[38%] building (101/999 modules)
[2K[1A[2K[G[38%] building (import loader vue-loader/dist/stylePostLoader.js)
[2K[1A[2K[G[38%] building (103/1006 modules)
[2K[1A[2K[G[38%] building (106/1028 modules)
[2K[1A[2K[G[38%] building (216/1062 modules)
[2K[1A[2K[G[38%] building (248/1189 modules)
[2K[1A[2K[G[38%] building (360/1438 modules)
[2K[1A[2K[G[38%] building (506/1450 modules)
[2K[1A[2K[G[38%] building (575/1578 modules)
[2K[1A[2K[G[38%] building (645/1644 modules)
[2K[1A[2K[G[38%] building (675/2045 modules)
[2K[1A[2K[G[38%] building (693/2078 modules)
[2K[1A[2K[G[38%] building (725/2139 modules)
[2K[1A[2K[G[38%] building (921/2299 modules)
[2K[1A[2K[G[38%] building (968/2471 modules)
[2K[1A[2K[G[38%] building (1100/2534 modules)
[2K[1A[2K[G[38%] building (1175/2539 modules)
[2K[1A[2K[G[38%] building (1272/2572 modules)
[2K[1A[2K[G[38%] building (1500/2647 modules)
[2K[1A[2K[G[51%] building (1787/2715 modules)
[2K[1A[2K[G[51%] building (1950/2746 modules)
[2K[1A[2K[G[51%] building (2700/2782 modules)
[2K[1A[2K[G[65%] building (2783/2783 modules)
[2K[1A[2K[G[65%] building
[2K[1A[2K[G[69%] building (finish)
[2K[1A[2K[G[70%] sealing (finish module graph)
[2K[1A[2K[G[70%] sealing (finish module graph ResolverCachePlugin)
[2K[1A[2K[G[70%] sealing (finish module graph InferAsyncModulesPlugin)
[2K[1A[2K[G[70%] sealing (finish module graph FlagDependencyExportsPlugin)
[2K[1A[2K[G[70%] sealing (finish module graph)
[2K[1A[2K[G[71%] sealing (plugins)
[2K[1A[2K[G[71%] sealing (plugins WarnCaseSensitiveModulesPlugin)
[2K[1A[2K[G[71%] sealing (plugins)
[2K[1A[2K[G[71%] sealing (dependencies optimization)
[2K[1A[2K[G[71%] sealing (dependencies optimization SideEffectsFlagPlugin)
[2K[1A[2K[G[71%] sealing (dependencies optimization)
[2K[1A[2K[G[72%] sealing (after dependencies optimization)
[2K[1A[2K[G[73%] sealing (chunk graph)
[2K[1A[2K[G[73%] sealing (after chunk graph)
[2K[1A[2K[G[74%] sealing (optimizing)
[2K[1A[2K[G[74%] sealing (module optimization)
[2K[1A[2K[G[75%] sealing (after module optimization)
[2K[1A[2K[G[76%] sealing (chunk optimization)
[2K[1A[2K[G[76%] sealing (chunk optimization EnsureChunkConditionsPlugin)
[2K[1A[2K[G[76%] sealing (chunk optimization RemoveEmptyChunksPlugin)
[2K[1A[2K[G[76%] sealing (chunk optimization MergeDuplicateChunksPlugin)
[2K[1A[2K[G[76%] sealing (chunk optimization SplitChunksPlugin)
[2K[1A[2K[G[76%] sealing (chunk optimization RemoveEmptyChunksPlugin)
[2K[1A[2K[G[76%] sealing (chunk optimization)
[2K[1A[2K[G[76%] sealing (after chunk optimization)
[2K[1A[2K[G[77%] sealing (module and chunk tree optimization)
[2K[1A[2K[G[77%] sealing (module and chunk tree optimization PersistentChildCompilerSinglet
onPlugin)
[2K[1A[2K[1A[2K[G[77%] sealing (module and chunk tree optimization)
[2K[1A[2K[G[78%] sealing (after module and chunk tree optimization)
[2K[1A[2K[G[78%] sealing (chunk modules optimization)
[2K[1A[2K[G[79%] sealing (after chunk modules optimization)
[2K[1A[2K[G[80%] sealing (module reviving)
[2K[1A[2K[G[80%] sealing (module reviving RecordIdsPlugin)
[2K[1A[2K[G[80%] sealing (module reviving)
[2K[1A[2K[G[80%] sealing (before module ids)
[2K[1A[2K[G[81%] sealing (module ids)
[2K[1A[2K[G[81%] sealing (module ids NamedModuleIdsPlugin)
[2K[1A[2K[G[81%] sealing (module ids)
[2K[1A[2K[G[82%] sealing (module id optimization)
[2K[1A[2K[G[82%] sealing (module id optimization)
[2K[1A[2K[G[83%] sealing (chunk reviving)
[2K[1A[2K[G[83%] sealing (chunk reviving RecordIdsPlugin)
[2K[1A[2K[G[83%] sealing (chunk reviving)
[2K[1A[2K[G[83%] sealing (before chunk ids)
[2K[1A[2K[G[84%] sealing (chunk ids)
[2K[1A[2K[G[84%] sealing (chunk ids NamedChunkIdsPlugin)
[2K[1A[2K[G[84%] sealing (chunk ids)
[2K[1A[2K[G[85%] sealing (chunk id optimization)
[2K[1A[2K[G[85%] sealing (after chunk id optimization)
[2K[1A[2K[G[86%] sealing (record modules)
[2K[1A[2K[G[86%] sealing (record modules RecordIdsPlugin)
[2K[1A[2K[G[86%] sealing (record modules)
[2K[1A[2K[G[87%] sealing (record chunks)
[2K[1A[2K[G[87%] sealing (record chunks RecordIdsPlugin)
[2K[1A[2K[G[87%] sealing (record chunks)
[2K[1A[2K[G[87%] sealing (module hashing)
[2K[1A[2K[G[88%] sealing (code generation)
[2K[1A[2K[G[89%] sealing (runtime requirements)
[2K[1A[2K[G[89%] sealing (hashing)
[2K[1A[2K[G[90%] sealing (after hashing)
[2K[1A[2K[G[91%] sealing (record hash)
[2K[1A[2K[G[91%] sealing (module assets processing)
[2K[1A[2K[G[92%] sealing (chunk assets processing)
[2K[1A[2K[G[92%] sealing (asset processing)
[2K[1A[2K[G[92%] sealing (asset processing copy-webpack-plugin)
[2K[1A[2K[G[92%] sealing (asset processing HotModuleReplacementPlugin)
[2K[1A[2K[G[92%] sealing (asset processing PersistentChildCompilerSingletonPlugin)
[2K[1A[2K[G[92%] sealing (asset processing HtmlWebpackPlugin)
[2K[1A[2K[G[92%] sealing (asset processing)
[2K[1A[2K[G[93%] sealing (after asset optimization)
[2K[1A[2K[G[94%] sealing (recording)
[2K[1A[2K[G[94%] sealing (recording HotModuleReplacementPlugin)
[2K[1A[2K[G[94%] sealing (recording)
[2K[1A[2K[G[94%] sealing (after seal)
[2K[1A[2K[G[95%] emitting (emit)
[2K[1A[2K[G[98%] emitting (after emit)
[2K[1A[2K[GBuild finished at 11:59:28 by 0.000s
[2K[1A[2K[GBuild finished at 11:59:28 by 0.000s
[2K[1A[2K[GBuild finished at 11:59:28 by 0.000s
[2K[1A[2K[G DONE Compiled successfully in 24448ms11:59:28 AM
Build finished at 11:59:28 by 0.000s
[2K[1A[2K[G
App running at:
- Local: http://localhost:80/
- Network: http://10.0.16.11:80/
Note that the development build is not optimized.
To create a production build, run yarn build.
Build finished at 11:59:28 by 0.000s
[2K[1A[2K[GBuild finished at 11:59:28 by 0.000s
[2K[1A[2K[GBuild finished at 11:59:28 by 0.000s
[2K[1A[2K[GBuild finished at 11:59:28 by 0.000s
[2K[1A[2K[GBuild finished at 11:59:28 by 0.000s
[2K[1A[2K[GBuild finished at 11:59:28 by 0.000s
[2K[1A[2K[GBuild finished at 11:59:28 by 0.000s
[2K[1A[2K[GBuild finished at 11:59:28 by 0.000s
[2K[1A[2K[Gyarn run v1.22.19
warning From Yarn 1.0 onwards, scripts don't require "--" for options to be forwarded. In a future version, any explicit "--" will be forwarded as-is to the scripts.
$ vue-cli-service serve --port 80
INFO Starting development server...
[3%] setup (watch run)
[2K[1A[2K[G[3%] setup (watch run webpack-dev-middleware)
[2K[1A[2K[G[3%] setup (watch run)
[2K[1A[2K[G[4%] setup (normal module factory)
[2K[1A[2K[G[4%] setup (normal module factory CaseSensitivePathsPlugin)
[2K[1A[2K[G[4%] setup (normal module factory)
[2K[1A[2K[G[5%] setup (context module factory)
[2K[1A[2K[G[6%] setup (before compile)
[2K[1A[2K[G[6%] setup (before compile ProgressPlugin)
[2K[1A[2K[G[6%] setup (before compile)
[2K[1A[2K[G[7%] setup (compile)
[2K[1A[2K[G[7%] setup (compile ExternalsPlugin)
[2K[1A[2K[G[7%] setup (compile)
[2K[1A[2K[G[8%] setup (compilation)
[2K[1A[2K[G[8%] setup (compilation CopyPlugin)
[2K[1A[2K[G[8%] setup (compilation ArrayPushCallbackChunkFormatPlugin)
[2K[1A[2K[G[8%] setup (compilation JsonpChunkLoadingPlugin)
[2K[1A[2K[G[8%] setup (compilation StartupChunkDependenciesPlugin)
[2K[1A[2K[G[8%] setup (compilation ImportScriptsChunkLoadingPlugin)
[2K[1A[2K[G[8%] setup (compilation FetchCompileWasmPlugin)
[2K[1A[2K[G[8%] setup (compilation FetchCompileAsyncWasmPlugin)
[2K[1A[2K[G[8%] setup (compilation WorkerPlugin)
[2K[1A[2K[G[8%] setup (compilation SplitChunksPlugin)
[2K[1A[2K[G[8%] setup (compilation ResolverCachePlugin)
[2K[1A[2K[G[8%] setup (compilation HtmlWebpackPlugin)
[2K[1A[2K[G[8%] setup (compilation)
[2K[1A[2K[G[9%] setup (compilation)
[2K[1A[2K[G[9%] setup (compilation vue-loader-plugin)
[2K[1A[2K[G[9%] setup (compilation DefinePlugin)
[2K[1A[2K[G[9%] setup (compilation ProgressPlugin)
[2K[1A[2K[G[9%] setup (compilation EntryPlugin)
[2K[1A[2K[G[9%] setup (compilation ChunkPrefetchPreloadPlugin)
[2K[1A[2K[G[9%] setup (compilation ModuleInfoHeaderPlugin)
[2K[1A[2K[G[9%] setup (compilation EvalSourceMapDevToolPlugin)
[2K[1A[2K[G[9%] setup (compilation JavascriptModulesPlugin)
[2K[1A[2K[G[9%] setup (compilation JsonModulesPlugin)
[2K[1A[2K[G[9%] setup (compilation AssetModulesPlugin)
[2K[1A[2K[G[9%] setup (compilation EntryPlugin)
[2K[1A[2K[G[9%] setup (compilation RuntimePlugin)
[2K[1A[2K[G[9%] setup (compilation InferAsyncModulesPlugin)
[2K[1A[2K[G[9%] setup (compilation DataUriPlugin)
[2K[1A[2K[G[9%] setup (compilation FileUriPlugin)
[2K[1A[2K[G[9%] setup (compilation CompatibilityPlugin)
[2K[1A[2K[G[9%] setup (compilation HarmonyModulesPlugin)
[2K[1A[2K[G[9%] setup (compilation AMDPlugin)
[2K[1A[2K[G[9%] setup (compilation RequireJsStuffPlugin)
[2K[1A[2K[G[9%] setup (compilation CommonJsPlugin)
[2K[1A[2K[G[9%] setup (compilation LoaderPlugin)
[2K[1A[2K[G[9%] setup (compilation NodeStuffPlugin)
[2K[1A[2K[G[9%] setup (compilation APIPlugin)
[2K[1A[2K[G[9%] setup (compilation ExportsInfoApiPlugin)
[2K[1A[2K[G[9%] setup (compilation WebpackIsIncludedPlugin)
[2K[1A[2K[G[9%] setup (compilation ConstPlugin)
[2K[1A[2K[G[9%] setup (compilation UseStrictPlugin)
[2K[1A[2K[G[9%] setup (compilation RequireIncludePlugin)
[2K[1A[2K[G[9%] setup (compilation RequireEnsurePlugin)
[2K[1A[2K[G[9%] setup (compilation RequireContextPlugin)
[2K[1A[2K[G[9%] setup (compilation ImportPlugin)
[2K[1A[2K[G[9%] setup (compilation RequireContextPlugin)
[2K[1A[2K[G[9%] setup (compilation SystemPlugin)
[2K[1A[2K[G[9%] setup (compilation ImportMetaPlugin)
[2K[1A[2K[G[9%] setup (compilation URLPlugin)
[2K[1A[2K[G[9%] setup (compilation DefaultStatsFactoryPlugin)
[2K[1A[2K[G[9%] setup (compilation DefaultStatsPresetPlugin)
[2K[1A[2K[G[9%] setup (compilation DefaultStatsPrinterPlugin)
[2K[1A[2K[G[9%] setup (compilation JavascriptMetaInfoPlugin)
[2K[1A[2K[G[9%] setup (compilation EnsureChunkConditionsPlugin)
[2K[1A[2K[G[9%] setup (compilation RemoveEmptyChunksPlugin)
[2K[1A[2K[G[9%] setup (compilation MergeDuplicateChunksPlugin)
[2K[1A[2K[G[9%] setup (compilation SideEffectsFlagPlugin)
[2K[1A[2K[G[9%] setup (compilation FlagDependencyExportsPlugin)
[2K[1A[2K[G[9%] setup (compilation NamedModuleIdsPlugin)
[2K[1A[2K[G[9%] setup (compilation NamedChunkIdsPlugin)
[2K[1A[2K[G[9%] setup (compilation DefinePlugin)
[2K[1A[2K[G[9%] setup (compilation TemplatedPathPlugin)
[2K[1A[2K[G[9%] setup (compilation RecordIdsPlugin)
[2K[1A[2K[G[9%] setup (compilation WarnCaseSensitiveModulesPlugin)
[2K[1A[2K[G[9%] setup (compilation EntryPlugin)
[2K[1A[2K[G[9%] setup (compilation ProvidePlugin)
[2K[1A[2K[G[9%] setup (compilation HotModuleReplacementPlugin)
[2K[1A[2K[G[9%] setup (compilation ProgressPlugin)
[2K[1A[2K[G[9%] setup (compilation)
[2K[1A[2K[G[10%] building
[2K[1A[2K[G[10%] building (0/0 modules)
[2K[1A[2K[G[10%] building (import loader babel-loader/lib/index.js)
[2K[1A[2K[G[10%] building (0/1 modules)
[2K[1A[2K[G[24%] building (3/8 modules)
[2K[1A[2K[G[24%] building (import loader vue-loader/dist/index.js)
[2K[1A[2K[G[24%] building (3/17 modules)
[2K[1A[2K[G[24%] building (import loader vue-style-loader/index.js)
[2K[1A[2K[G[24%] building (import loader css-loader/dist/cjs.js)
[2K[1A[2K[G[24%] building (import loader postcss-loader/dist/cjs.js)
[2K[1A[2K[G[24%] building (3/30 modules)
[2K[1A[2K[G[24%] building (import loader vue-loader/dist/pitcher.js)
[2K[1A[2K[G[24%] building (3/38 modules)
[2K[1A[2K[G[24%] building (import loader vue-loader/dist/templateLoader.js)
[2K[1A[2K[G[24%] building (3/38 modules)
[2K[1A[2K[G[24%] building (7/100 modules)
[2K[1A[2K[G[24%] building (8/374 modules)
[2K[1A[2K[G[24%] building (14/412 modules)
[2K[1A[2K[G[24%] building (19/500 modules)
[2K[1A[2K[G[38%] building (22/634 modules)
[2K[1A[2K[G[38%] building (22/679 modules)
[2K[1A[2K[G[38%] building (42/780 modules)
[2K[1A[2K[G[38%] building (57/825 modules)
[2K[1A[2K[G[38%] building (73/953 modules)
[2K[1A[2K[G[38%] building (125/1000 modules)
[2K[1A[2K[G[38%] building (import loader vue-loader/dist/stylePostLoader.js)
[2K[1A[2K[G[38%] building (196/1009 modules)
[2K[1A[2K[G[38%] building (301/1014 modules)
[2K[1A[2K[G[38%] building (308/1035 modules)
[2K[1A[2K[G[38%] building (400/1082 modules)
[2K[1A[2K[G[38%] building (439/1139 modules)
[2K[1A[2K[G[38%] building (472/1300 modules)
[2K[1A[2K[G[38%] building (541/1513 modules)
[2K[1A[2K[G[38%] building (571/1537 modules)
[2K[1A[2K[G[38%] building (645/1633 modules)
[2K[1A[2K[G[38%] building (687/2053 modules)
[2K[1A[2K[G[38%] building (706/2114 modules)
[2K[1A[2K[G[38%] building (794/2273 modules)
[2K[1A[2K[G[38%] building (925/2299 modules)
[2K[1A[2K[G[38%] building (980/2423 modules)
[2K[1A[2K[G[38%] building (1046/2518 modules)
[2K[1A[2K[G[38%] building (1162/2551 modules)
[2K[1A[2K[G[38%] building (1203/2553 modules)
[2K[1A[2K[G[38%] building (1300/2581 modules)
[2K[1A[2K[G[38%] building (1552/2664 modules)
[2K[1A[2K[G[51%] building (1727/2708 modules)
[2K[1A[2K[G[51%] building (2054/2760 modules)
[2K[1A[2K[G[51%] building (2600/2781 modules)
[2K[1A[2K[G[65%] building (2783/2783 modules)
[2K[1A[2K[G[65%] building
[2K[1A[2K[G[69%] building (finish)
[2K[1A[2K[G[70%] sealing (finish module graph)
[2K[1A[2K[G[70%] sealing (finish module graph ResolverCachePlugin)
[2K[1A[2K[G[70%] sealing (finish module graph InferAsyncModulesPlugin)
[2K[1A[2K[G[70%] sealing (finish module graph FlagDependencyExportsPlugin)
[2K[1A[2K[G[70%] sealing (finish module graph)
[2K[1A[2K[G[71%] sealing (plugins)
[2K[1A[2K[G[71%] sealing (plugins WarnCaseSensitiveModulesPlugin)
[2K[1A[2K[G[71%] sealing (plugins)
[2K[1A[2K[G[71%] sealing (dependencies optimization)
[2K[1A[2K[G[71%] sealing (dependencies optimization SideEffectsFlagPlugin)
[2K[1A[2K[G[71%] sealing (dependencies optimization)
[2K[1A[2K[G[72%] sealing (after dependencies optimization)
[2K[1A[2K[G[73%] sealing (chunk graph)
[2K[1A[2K[G[73%] sealing (after chunk graph)
[2K[1A[2K[G[74%] sealing (optimizing)
[2K[1A[2K[G[74%] sealing (module optimization)
[2K[1A[2K[G[75%] sealing (after module optimization)
[2K[1A[2K[G[76%] sealing (chunk optimization)
[2K[1A[2K[G[76%] sealing (chunk optimization EnsureChunkConditionsPlugin)
[2K[1A[2K[G[76%] sealing (chunk optimization RemoveEmptyChunksPlugin)
[2K[1A[2K[G[76%] sealing (chunk optimization MergeDuplicateChunksPlugin)
[2K[1A[2K[G[76%] sealing (chunk optimization SplitChunksPlugin)
[2K[1A[2K[G[76%] sealing (chunk optimization RemoveEmptyChunksPlugin)
[2K[1A[2K[G[76%] sealing (chunk optimization)
[2K[1A[2K[G[76%] sealing (after chunk optimization)
[2K[1A[2K[G[77%] sealing (module and chunk tree optimization)
[2K[1A[2K[G[77%] sealing (module and chunk tree optimization PersistentChildCompilerSinglet
onPlugin)
[2K[1A[2K[1A[2K[G[77%] sealing (module and chunk tree optimization)
[2K[1A[2K[G[78%] sealing (after module and chunk tree optimization)
[2K[1A[2K[G[78%] sealing (chunk modules optimization)
[2K[1A[2K[G[79%] sealing (after chunk modules optimization)
[2K[1A[2K[G[80%] sealing (module reviving)
[2K[1A[2K[G[80%] sealing (module reviving RecordIdsPlugin)
[2K[1A[2K[G[80%] sealing (module reviving)
[2K[1A[2K[G[80%] sealing (before module ids)
[2K[1A[2K[G[81%] sealing (module ids)
[2K[1A[2K[G[81%] sealing (module ids NamedModuleIdsPlugin)
[2K[1A[2K[G[81%] sealing (module ids)
[2K[1A[2K[G[82%] sealing (module id optimization)
[2K[1A[2K[G[82%] sealing (module id optimization)
[2K[1A[2K[G[83%] sealing (chunk reviving)
[2K[1A[2K[G[83%] sealing (chunk reviving RecordIdsPlugin)
[2K[1A[2K[G[83%] sealing (chunk reviving)
[2K[1A[2K[G[83%] sealing (before chunk ids)
[2K[1A[2K[G[84%] sealing (chunk ids)
[2K[1A[2K[G[84%] sealing (chunk ids NamedChunkIdsPlugin)
npm ERR! Missing script: "dev"
npm ERR!
npm ERR! To see a list of scripts, run:
npm ERR! npm run
npm ERR! A complete log of this run can be found in:
npm ERR! /root/.npm/_logs/2022-10-30T04_01_51_606Z-debug-0.log
[2K[1A[2K[G[84%] sealing (chunk ids)
[2K[1A[2K[G[85%] sealing (chunk id optimization)
[2K[1A[2K[G[85%] sealing (after chunk id optimization)
[2K[1A[2K[G[86%] sealing (record modules)
[2K[1A[2K[G[86%] sealing (record modules RecordIdsPlugin)
[2K[1A[2K[G[86%] sealing (record modules)
[2K[1A[2K[G[87%] sealing (record chunks)
[2K[1A[2K[G[87%] sealing (record chunks RecordIdsPlugin)
[2K[1A[2K[G[87%] sealing (record chunks)
[2K[1A[2K[G[87%] sealing (module hashing)
[2K[1A[2K[G[88%] sealing (code generation)
[2K[1A[2K[G[89%] sealing (runtime requirements)
[2K[1A[2K[G[89%] sealing (hashing)
[2K[1A[2K[G[90%] sealing (after hashing)
[2K[1A[2K[G[91%] sealing (record hash)
[2K[1A[2K[G[91%] sealing (module assets processing)
[2K[1A[2K[G[92%] sealing (chunk assets processing)
[2K[1A[2K[G[92%] sealing (asset processing)
[2K[1A[2K[G[92%] sealing (asset processing copy-webpack-plugin)
[2K[1A[2K[G[92%] sealing (asset processing HotModuleReplacementPlugin)
[2K[1A[2K[G[92%] sealing (asset processing PersistentChildCompilerSingletonPlugin)
[2K[1A[2K[G[92%] sealing (asset processing HtmlWebpackPlugin)
[2K[1A[2K[G[92%] sealing (asset processing)
[2K[1A[2K[G[93%] sealing (after asset optimization)
[2K[1A[2K[G[94%] sealing (recording)
[2K[1A[2K[G[94%] sealing (recording HotModuleReplacementPlugin)
[2K[1A[2K[G[94%] sealing (recording)
[2K[1A[2K[G[94%] sealing (after seal)
[2K[1A[2K[G[95%] emitting (emit)
[2K[1A[2K[G[98%] emitting (after emit)
[2K[1A[2K[GBuild finished at 12:02:08 by 0.000s
[2K[1A[2K[GBuild finished at 12:02:08 by 0.000s
[2K[1A[2K[GBuild finished at 12:02:08 by 0.000s
[2K[1A[2K[G DONE Compiled successfully in 39864ms12:02:08 PM
Build finished at 12:02:09 by 0.000s
[2K[1A[2K[G
App running at:
- Local: http://localhost:81/
- Network: http://10.0.16.11:81/
Note that the development build is not optimized.
To create a production build, run yarn build.
Build finished at 12:02:11 by 0.000s
[2K[1A[2K[GBuild finished at 12:02:11 by 0.000s
[2K[1A[2K[GBuild finished at 12:02:11 by 0.000s
[2K[1A[2K[GBuild finished at 12:02:11 by 0.000s
[2K[1A[2K[GBuild finished at 12:02:11 by 0.000s
[2K[1A[2K[GBuild finished at 12:02:11 by 0.000s
[2K[1A[2K[GBuild finished at 12:02:11 by 0.000s
[2K[1A[2K[GBuild finished at 12:02:11 by 0.000s
[2K[1A[2K[Gyarn run v1.22.19
warning From Yarn 1.0 onwards, scripts don't require "--" for options to be forwarded. In a future version, any explicit "--" will be forwarded as-is to the scripts.
$ vue-cli-service serve --port 80
INFO Starting development server...
[3%] setup (watch run)
[2K[1A[2K[G[3%] setup (watch run webpack-dev-middleware)
[2K[1A[2K[G[3%] setup (watch run)
[2K[1A[2K[G[4%] setup (normal module factory)
[2K[1A[2K[G[4%] setup (normal module factory CaseSensitivePathsPlugin)
[2K[1A[2K[G[4%] setup (normal module factory)
[2K[1A[2K[G[5%] setup (context module factory)
[2K[1A[2K[G[6%] setup (before compile)
[2K[1A[2K[G[6%] setup (before compile ProgressPlugin)
[2K[1A[2K[G[6%] setup (before compile)
[2K[1A[2K[G[7%] setup (compile)
[2K[1A[2K[G[7%] setup (compile ExternalsPlugin)
[2K[1A[2K[G[7%] setup (compile)
[2K[1A[2K[G[8%] setup (compilation)
[2K[1A[2K[G[8%] setup (compilation CopyPlugin)
[2K[1A[2K[G[8%] setup (compilation ArrayPushCallbackChunkFormatPlugin)
[2K[1A[2K[G[8%] setup (compilation JsonpChunkLoadingPlugin)
[2K[1A[2K[G[8%] setup (compilation StartupChunkDependenciesPlugin)
[2K[1A[2K[G[8%] setup (compilation ImportScriptsChunkLoadingPlugin)
[2K[1A[2K[G[8%] setup (compilation FetchCompileWasmPlugin)
[2K[1A[2K[G[8%] setup (compilation FetchCompileAsyncWasmPlugin)
[2K[1A[2K[G[8%] setup (compilation WorkerPlugin)
[2K[1A[2K[G[8%] setup (compilation SplitChunksPlugin)
[2K[1A[2K[G[8%] setup (compilation ResolverCachePlugin)
[2K[1A[2K[G[8%] setup (compilation HtmlWebpackPlugin)
[2K[1A[2K[G[8%] setup (compilation)
[2K[1A[2K[G[9%] setup (compilation)
[2K[1A[2K[G[9%] setup (compilation vue-loader-plugin)
[2K[1A[2K[G[9%] setup (compilation DefinePlugin)
[2K[1A[2K[G[9%] setup (compilation ProgressPlugin)
[2K[1A[2K[G[9%] setup (compilation EntryPlugin)
[2K[1A[2K[G[9%] setup (compilation ChunkPrefetchPreloadPlugin)
[2K[1A[2K[G[9%] setup (compilation ModuleInfoHeaderPlugin)
[2K[1A[2K[G[9%] setup (compilation EvalSourceMapDevToolPlugin)
[2K[1A[2K[G[9%] setup (compilation JavascriptModulesPlugin)
[2K[1A[2K[G[9%] setup (compilation JsonModulesPlugin)
[2K[1A[2K[G[9%] setup (compilation AssetModulesPlugin)
[2K[1A[2K[G[9%] setup (compilation EntryPlugin)
[2K[1A[2K[G[9%] setup (compilation RuntimePlugin)
[2K[1A[2K[G[9%] setup (compilation InferAsyncModulesPlugin)
[2K[1A[2K[G[9%] setup (compilation DataUriPlugin)
[2K[1A[2K[G[9%] setup (compilation FileUriPlugin)
[2K[1A[2K[G[9%] setup (compilation CompatibilityPlugin)
[2K[1A[2K[G[9%] setup (compilation HarmonyModulesPlugin)
[2K[1A[2K[G[9%] setup (compilation AMDPlugin)
[2K[1A[2K[G[9%] setup (compilation RequireJsStuffPlugin)
[2K[1A[2K[G[9%] setup (compilation CommonJsPlugin)
[2K[1A[2K[G[9%] setup (compilation LoaderPlugin)
[2K[1A[2K[G[9%] setup (compilation NodeStuffPlugin)
[2K[1A[2K[G[9%] setup (compilation APIPlugin)
[2K[1A[2K[G[9%] setup (compilation ExportsInfoApiPlugin)
[2K[1A[2K[G[9%] setup (compilation WebpackIsIncludedPlugin)
[2K[1A[2K[G[9%] setup (compilation ConstPlugin)
[2K[1A[2K[G[9%] setup (compilation UseStrictPlugin)
[2K[1A[2K[G[9%] setup (compilation RequireIncludePlugin)
[2K[1A[2K[G[9%] setup (compilation RequireEnsurePlugin)
[2K[1A[2K[G[9%] setup (compilation RequireContextPlugin)
[2K[1A[2K[G[9%] setup (compilation ImportPlugin)
[2K[1A[2K[G[9%] setup (compilation RequireContextPlugin)
[2K[1A[2K[G[9%] setup (compilation SystemPlugin)
[2K[1A[2K[G[9%] setup (compilation ImportMetaPlugin)
[2K[1A[2K[G[9%] setup (compilation URLPlugin)
[2K[1A[2K[G[9%] setup (compilation DefaultStatsFactoryPlugin)
[2K[1A[2K[G[9%] setup (compilation DefaultStatsPresetPlugin)
[2K[1A[2K[G[9%] setup (compilation DefaultStatsPrinterPlugin)
[2K[1A[2K[G[9%] setup (compilation JavascriptMetaInfoPlugin)
[2K[1A[2K[G[9%] setup (compilation EnsureChunkConditionsPlugin)
[2K[1A[2K[G[9%] setup (compilation RemoveEmptyChunksPlugin)
[2K[1A[2K[G[9%] setup (compilation MergeDuplicateChunksPlugin)
[2K[1A[2K[G[9%] setup (compilation SideEffectsFlagPlugin)
[2K[1A[2K[G[9%] setup (compilation FlagDependencyExportsPlugin)
[2K[1A[2K[G[9%] setup (compilation NamedModuleIdsPlugin)
[2K[1A[2K[G[9%] setup (compilation NamedChunkIdsPlugin)
[2K[1A[2K[G[9%] setup (compilation DefinePlugin)
[2K[1A[2K[G[9%] setup (compilation TemplatedPathPlugin)
[2K[1A[2K[G[9%] setup (compilation RecordIdsPlugin)
[2K[1A[2K[G[9%] setup (compilation WarnCaseSensitiveModulesPlugin)
[2K[1A[2K[G[9%] setup (compilation EntryPlugin)
[2K[1A[2K[G[9%] setup (compilation ProvidePlugin)
[2K[1A[2K[G[9%] setup (compilation HotModuleReplacementPlugin)
[2K[1A[2K[G[9%] setup (compilation ProgressPlugin)
[2K[1A[2K[G[9%] setup (compilation)
[2K[1A[2K[G[10%] building
[2K[1A[2K[G[10%] building (0/0 modules)
[2K[1A[2K[G[10%] building (import loader babel-loader/lib/index.js)
[2K[1A[2K[G[10%] building (0/1 modules)
[2K[1A[2K[G[24%] building (3/7 modules)
[2K[1A[2K[G[24%] building (import loader vue-loader/dist/index.js)
[2K[1A[2K[G[24%] building (3/17 modules)
[2K[1A[2K[G[24%] building (import loader vue-loader/dist/pitcher.js)
[2K[1A[2K[G[24%] building (6/27 modules)
[2K[1A[2K[G[24%] building (import loader vue-loader/dist/templateLoader.js)
[2K[1A[2K[G[24%] building (6/27 modules)
[2K[1A[2K[G[24%] building (import loader vue-style-loader/index.js)
[2K[1A[2K[G[24%] building (import loader css-loader/dist/cjs.js)
[2K[1A[2K[G[24%] building (import loader postcss-loader/dist/cjs.js)
[2K[1A[2K[G[24%] building (6/35 modules)
[2K[1A[2K[G[24%] building (7/100 modules)
[2K[1A[2K[G[24%] building (7/346 modules)
[2K[1A[2K[G[24%] building (12/400 modules)
[2K[1A[2K[G[24%] building (16/483 modules)
[2K[1A[2K[G[24%] building (23/486 modules)
[2K[1A[2K[G[24%] building (24/571 modules)
[2K[1A[2K[G[24%] building (25/584 modules)
[2K[1A[2K[G[24%] building (59/668 modules)
[2K[1A[2K[G[24%] building (72/700 modules)
[2K[1A[2K[G[24%] building (73/990 modules)
[2K[1A[2K[G[24%] building (import loader vue-loader/dist/stylePostLoader.js)
[2K[1A[2K[G[24%] building (73/996 modules)
[2K[1A[2K[G[24%] building (86/1011 modules)
[2K[1A[2K[G[24%] building (160/1081 modules)
[2K[1A[2K[G[24%] building (230/1100 modules)
[2K[1A[2K[G[24%] building (253/1289 modules)
[2K[1A[2K[G[24%] building (280/1455 modules)
[2K[1A[2K[G[24%] building (473/1464 modules)
[2K[1A[2K[G[24%] building (550/1540 modules)
[2K[1A[2K[G[24%] building (571/1571 modules)
[2K[1A[2K[G[24%] building (598/1617 modules)
[2K[1A[2K[G[24%] building (630/1658 modules)
[2K[1A[2K[G[24%] building (669/2025 modules)
[2K[1A[2K[G[24%] building (699/2078 modules)
[2K[1A[2K[G[24%] building (733/2131 modules)
[2K[1A[2K[G[24%] building (855/2291 modules)
[2K[1A[2K[G[24%] building (959/2348 modules)
[2K[1A[2K[G[24%] building (976/2392 modules)
[2K[1A[2K[G[24%] building (1050/2500 modules)
[2K[1A[2K[G[24%] building (1100/2533 modules)
[2K[1A[2K[G[24%] building (1132/2556 modules)
[2K[1A[2K[G[24%] building (1314/2572 modules)
[2K[1A[2K[G[24%] building (1510/2645 modules)
[2K[1A[2K[G[24%] building (1697/2720 modules)
[2K[1A[2K[G[38%] building (2013/2757 modules)
[2K[1A[2K[G[51%] building (2016/2757 modules)
[2K[1A[2K[G[51%] building (2100/2764 modules)
[2K[1A[2K[G[51%] building (2300/2772 modules)
[2K[1A[2K[G[51%] building (2700/2782 modules)
[2K[1A[2K[G[65%] building (2783/2783 modules)
[2K[1A[2K[G[65%] building
[2K[1A[2K[G[69%] building (finish)
[2K[1A[2K[G[70%] sealing (finish module graph)
[2K[1A[2K[G[70%] sealing (finish module graph ResolverCachePlugin)
[2K[1A[2K[G[70%] sealing (finish module graph InferAsyncModulesPlugin)
[2K[1A[2K[G[70%] sealing (finish module graph FlagDependencyExportsPlugin)
[2K[1A[2K[G[70%] sealing (finish module graph)
[2K[1A[2K[G[71%] sealing (plugins)
[2K[1A[2K[G[71%] sealing (plugins WarnCaseSensitiveModulesPlugin)
[2K[1A[2K[G[71%] sealing (plugins)
[2K[1A[2K[G[71%] sealing (dependencies optimization)
[2K[1A[2K[G[71%] sealing (dependencies optimization SideEffectsFlagPlugin)
[2K[1A[2K[G[71%] sealing (dependencies optimization)
[2K[1A[2K[G[72%] sealing (after dependencies optimization)
[2K[1A[2K[G[73%] sealing (chunk graph)
[2K[1A[2K[G[73%] sealing (after chunk graph)
[2K[1A[2K[G[74%] sealing (optimizing)
[2K[1A[2K[G[74%] sealing (module optimization)
[2K[1A[2K[G[75%] sealing (after module optimization)
[2K[1A[2K[G[76%] sealing (chunk optimization)
[2K[1A[2K[G[76%] sealing (chunk optimization EnsureChunkConditionsPlugin)
[2K[1A[2K[G[76%] sealing (chunk optimization RemoveEmptyChunksPlugin)
[2K[1A[2K[G[76%] sealing (chunk optimization MergeDuplicateChunksPlugin)
[2K[1A[2K[G[76%] sealing (chunk optimization SplitChunksPlugin)
[2K[1A[2K[G[76%] sealing (chunk optimization RemoveEmptyChunksPlugin)
[2K[1A[2K[G[76%] sealing (chunk optimization)
[2K[1A[2K[G[76%] sealing (after chunk optimization)
[2K[1A[2K[G[77%] sealing (module and chunk tree optimization)
[2K[1A[2K[G[77%] sealing (module and chunk tree optimization PersistentChildCompilerSinglet
onPlugin)
[2K[1A[2K[1A[2K[G[77%] sealing (module and chunk tree optimization)
[2K[1A[2K[G[78%] sealing (after module and chunk tree optimization)
[2K[1A[2K[G[78%] sealing (chunk modules optimization)
[2K[1A[2K[G[79%] sealing (after chunk modules optimization)
[2K[1A[2K[G[80%] sealing (module reviving)
[2K[1A[2K[G[80%] sealing (module reviving RecordIdsPlugin)
[2K[1A[2K[G[80%] sealing (module reviving)
[2K[1A[2K[G[80%] sealing (before module ids)
[2K[1A[2K[G[81%] sealing (module ids)
[2K[1A[2K[G[81%] sealing (module ids NamedModuleIdsPlugin)
[2K[1A[2K[G[81%] sealing (module ids)
[2K[1A[2K[G[82%] sealing (module id optimization)
[2K[1A[2K[G[82%] sealing (module id optimization)
[2K[1A[2K[G[83%] sealing (chunk reviving)
[2K[1A[2K[G[83%] sealing (chunk reviving RecordIdsPlugin)
[2K[1A[2K[G[83%] sealing (chunk reviving)
[2K[1A[2K[G[83%] sealing (before chunk ids)
[2K[1A[2K[G[84%] sealing (chunk ids)
[2K[1A[2K[G[84%] sealing (chunk ids NamedChunkIdsPlugin)
[2K[1A[2K[G[84%] sealing (chunk ids)
[2K[1A[2K[G[85%] sealing (chunk id optimization)
[2K[1A[2K[G[85%] sealing (after chunk id optimization)
[2K[1A[2K[G[86%] sealing (record modules)
[2K[1A[2K[G[86%] sealing (record modules RecordIdsPlugin)
[2K[1A[2K[G[86%] sealing (record modules)
[2K[1A[2K[G[87%] sealing (record chunks)
[2K[1A[2K[G[87%] sealing (record chunks RecordIdsPlugin)
[2K[1A[2K[G[87%] sealing (record chunks)
[2K[1A[2K[G[87%] sealing (module hashing)
[2K[1A[2K[G[88%] sealing (code generation)
[2K[1A[2K[G[89%] sealing (runtime requirements)
[2K[1A[2K[G[89%] sealing (hashing)
[2K[1A[2K[G[90%] sealing (after hashing)
[2K[1A[2K[G[91%] sealing (record hash)
[2K[1A[2K[G[91%] sealing (module assets processing)
[2K[1A[2K[G[92%] sealing (chunk assets processing)
[2K[1A[2K[G[92%] sealing (asset processing)
[2K[1A[2K[G[92%] sealing (asset processing copy-webpack-plugin)
[2K[1A[2K[G[92%] sealing (asset processing HotModuleReplacementPlugin)
[2K[1A[2K[G[92%] sealing (asset processing PersistentChildCompilerSingletonPlugin)
[2K[1A[2K[G[92%] sealing (asset processing HtmlWebpackPlugin)
[2K[1A[2K[G[92%] sealing (asset processing)
[2K[1A[2K[G[93%] sealing (after asset optimization)
[2K[1A[2K[G[94%] sealing (recording)
[2K[1A[2K[G[94%] sealing (recording HotModuleReplacementPlugin)
[2K[1A[2K[G[94%] sealing (recording)
[2K[1A[2K[G[94%] sealing (after seal)
[2K[1A[2K[G[95%] emitting (emit)
[2K[1A[2K[G[98%] emitting (after emit)
[2K[1A[2K[GBuild finished at 12:03:45 by 0.000s
[2K[1A[2K[GBuild finished at 12:03:45 by 0.000s
[2K[1A[2K[GBuild finished at 12:03:45 by 0.000s
[2K[1A[2K[G DONE Compiled successfully in 43538ms12:03:45 PM
Build finished at 12:03:45 by 0.000s
[2K[1A[2K[G
App running at:
- Local: http://localhost:82/
- Network: http://10.0.16.11:82/
error Command failed with signal "SIGKILL".
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
Note that the development build is not optimized.
To create a production build, run yarn build.
Build finished at 12:03:45 by 0.000s
[2K[1A[2K[GBuild finished at 12:03:45 by 0.001s
[2K[1A[2K[GBuild finished at 12:03:45 by 0.000s
[2K[1A[2K[GBuild finished at 12:03:45 by 0.000s
[2K[1A[2K[GBuild finished at 12:03:45 by 0.000s
[2K[1A[2K[GBuild finished at 12:03:45 by 0.000s
[2K[1A[2K[GBuild finished at 12:03:45 by 0.000s
[2K[1A[2K[GBuild finished at 12:03:45 by 0.000s
[2K[1A[2K[Gyarn run v1.22.19
warning From Yarn 1.0 onwards, scripts don't require "--" for options to be forwarded. In a future version, any explicit "--" will be forwarded as-is to the scripts.
$ vue-cli-service serve --port 80
INFO Starting development server...
[3%] setup (watch run)
[2K[1A[2K[G[3%] setup (watch run webpack-dev-middleware)
[2K[1A[2K[G[3%] setup (watch run)
[2K[1A[2K[G[4%] setup (normal module factory)
[2K[1A[2K[G[4%] setup (normal module factory CaseSensitivePathsPlugin)
[2K[1A[2K[G[4%] setup (normal module factory)
[2K[1A[2K[G[5%] setup (context module factory)
[2K[1A[2K[G[6%] setup (before compile)
[2K[1A[2K[G[6%] setup (before compile ProgressPlugin)
[2K[1A[2K[G[6%] setup (before compile)
[2K[1A[2K[G[7%] setup (compile)
[2K[1A[2K[G[7%] setup (compile ExternalsPlugin)
[2K[1A[2K[G[7%] setup (compile)
[2K[1A[2K[G[8%] setup (compilation)
[2K[1A[2K[G[8%] setup (compilation CopyPlugin)
[2K[1A[2K[G[8%] setup (compilation ArrayPushCallbackChunkFormatPlugin)
[2K[1A[2K[G[8%] setup (compilation JsonpChunkLoadingPlugin)
[2K[1A[2K[G[8%] setup (compilation StartupChunkDependenciesPlugin)
[2K[1A[2K[G[8%] setup (compilation ImportScriptsChunkLoadingPlugin)
[2K[1A[2K[G[8%] setup (compilation FetchCompileWasmPlugin)
[2K[1A[2K[G[8%] setup (compilation FetchCompileAsyncWasmPlugin)
[2K[1A[2K[G[8%] setup (compilation WorkerPlugin)
[2K[1A[2K[G[8%] setup (compilation SplitChunksPlugin)
[2K[1A[2K[G[8%] setup (compilation ResolverCachePlugin)
[2K[1A[2K[G[8%] setup (compilation HtmlWebpackPlugin)
[2K[1A[2K[G[8%] setup (compilation)
[2K[1A[2K[G[9%] setup (compilation)
[2K[1A[2K[G[9%] setup (compilation vue-loader-plugin)
[2K[1A[2K[G[9%] setup (compilation DefinePlugin)
[2K[1A[2K[G[9%] setup (compilation ProgressPlugin)
[2K[1A[2K[G[9%] setup (compilation EntryPlugin)
[2K[1A[2K[G[9%] setup (compilation ChunkPrefetchPreloadPlugin)
[2K[1A[2K[G[9%] setup (compilation ModuleInfoHeaderPlugin)
[2K[1A[2K[G[9%] setup (compilation EvalSourceMapDevToolPlugin)
[2K[1A[2K[G[9%] setup (compilation JavascriptModulesPlugin)
[2K[1A[2K[G[9%] setup (compilation JsonModulesPlugin)
[2K[1A[2K[G[9%] setup (compilation AssetModulesPlugin)
[2K[1A[2K[G[9%] setup (compilation EntryPlugin)
[2K[1A[2K[G[9%] setup (compilation RuntimePlugin)
[2K[1A[2K[G[9%] setup (compilation InferAsyncModulesPlugin)
[2K[1A[2K[G[9%] setup (compilation DataUriPlugin)
[2K[1A[2K[G[9%] setup (compilation FileUriPlugin)
[2K[1A[2K[G[9%] setup (compilation CompatibilityPlugin)
[2K[1A[2K[G[9%] setup (compilation HarmonyModulesPlugin)
[2K[1A[2K[G[9%] setup (compilation AMDPlugin)
[2K[1A[2K[G[9%] setup (compilation RequireJsStuffPlugin)
[2K[1A[2K[G[9%] setup (compilation CommonJsPlugin)
[2K[1A[2K[G[9%] setup (compilation LoaderPlugin)
[2K[1A[2K[G[9%] setup (compilation NodeStuffPlugin)
[2K[1A[2K[G[9%] setup (compilation APIPlugin)
[2K[1A[2K[G[9%] setup (compilation ExportsInfoApiPlugin)
[2K[1A[2K[G[9%] setup (compilation WebpackIsIncludedPlugin)
[2K[1A[2K[G[9%] setup (compilation ConstPlugin)
[2K[1A[2K[G[9%] setup (compilation UseStrictPlugin)
[2K[1A[2K[G[9%] setup (compilation RequireIncludePlugin)
[2K[1A[2K[G[9%] setup (compilation RequireEnsurePlugin)
[2K[1A[2K[G[9%] setup (compilation RequireContextPlugin)
[2K[1A[2K[G[9%] setup (compilation ImportPlugin)
[2K[1A[2K[G[9%] setup (compilation RequireContextPlugin)
[2K[1A[2K[G[9%] setup (compilation SystemPlugin)
[2K[1A[2K[G[9%] setup (compilation ImportMetaPlugin)
[2K[1A[2K[G[9%] setup (compilation URLPlugin)
[2K[1A[2K[G[9%] setup (compilation DefaultStatsFactoryPlugin)
[2K[1A[2K[G[9%] setup (compilation DefaultStatsPresetPlugin)
[2K[1A[2K[G[9%] setup (compilation DefaultStatsPrinterPlugin)
[2K[1A[2K[G[9%] setup (compilation JavascriptMetaInfoPlugin)
[2K[1A[2K[G[9%] setup (compilation EnsureChunkConditionsPlugin)
[2K[1A[2K[G[9%] setup (compilation RemoveEmptyChunksPlugin)
[2K[1A[2K[G[9%] setup (compilation MergeDuplicateChunksPlugin)
[2K[1A[2K[G[9%] setup (compilation SideEffectsFlagPlugin)
[2K[1A[2K[G[9%] setup (compilation FlagDependencyExportsPlugin)
[2K[1A[2K[G[9%] setup (compilation NamedModuleIdsPlugin)
[2K[1A[2K[G[9%] setup (compilation NamedChunkIdsPlugin)
[2K[1A[2K[G[9%] setup (compilation DefinePlugin)
[2K[1A[2K[G[9%] setup (compilation TemplatedPathPlugin)
[2K[1A[2K[G[9%] setup (compilation RecordIdsPlugin)
[2K[1A[2K[G[9%] setup (compilation WarnCaseSensitiveModulesPlugin)
[2K[1A[2K[G[9%] setup (compilation EntryPlugin)
[2K[1A[2K[G[9%] setup (compilation ProvidePlugin)
[2K[1A[2K[G[9%] setup (compilation HotModuleReplacementPlugin)
[2K[1A[2K[G[9%] setup (compilation ProgressPlugin)
[2K[1A[2K[G[9%] setup (compilation)
[2K[1A[2K[G[10%] building
[2K[1A[2K[G[10%] building (0/0 modules)
[2K[1A[2K[G[10%] building (import loader babel-loader/lib/index.js)
[2K[1A[2K[G[10%] building (0/2 modules)
[2K[1A[2K[G[24%] building (3/7 modules)
[2K[1A[2K[G[24%] building (import loader vue-loader/dist/index.js)
[2K[1A[2K[G[24%] building (3/17 modules)
[2K[1A[2K[G[24%] building (import loader vue-style-loader/index.js)
[2K[1A[2K[G[24%] building (import loader css-loader/dist/cjs.js)
[2K[1A[2K[G[24%] building (import loader postcss-loader/dist/cjs.js)
[2K[1A[2K[G[24%] building (6/32 modules)
[2K[1A[2K[G[24%] building (import loader vue-loader/dist/pitcher.js)
[2K[1A[2K[G[24%] building (6/35 modules)
[2K[1A[2K[G[24%] building (import loader vue-loader/dist/templateLoader.js)
[2K[1A[2K[G[24%] building (6/35 modules)
[2K[1A[2K[G[24%] building (7/200 modules)
[2K[1A[2K[G[24%] building (7/344 modules)
[2K[1A[2K[G[24%] building (11/404 modules)
[2K[1A[2K[G[24%] building (16/540 modules)
[2K[1A[2K[G[24%] building (23/577 modules)
[2K[1A[2K[G[24%] building (23/600 modules)
[2K[1A[2K[G[24%] building (56/662 modules)
[2K[1A[2K[G[24%] building (64/888 modules)
[2K[1A[2K[G[24%] building (71/1012 modules)
[2K[1A[2K[G[24%] building (94/1220 modules)
[2K[1A[2K[G[24%] building (137/1246 modules)
[2K[1A[2K[G[24%] building (import loader vue-loader/dist/stylePostLoader.js)
[2K[1A[2K[G[24%] building (154/1275 modules)
[2K[1A[2K[G[24%] building (159/1303 modules)
[2K[1A[2K[G[24%] building (224/1346 modules)
[2K[1A[2K[G[24%] building (300/1407 modules)
[2K[1A[2K[G[24%] building (436/1443 modules)
[2K[1A[2K[G[24%] building (468/1453 modules)
[2K[1A[2K[G[24%] building (515/1530 modules)
[2K[1A[2K[G[24%] building (547/1600 modules)
[2K[1A[2K[G[24%] building (573/1663 modules)
[2K[1A[2K[G[24%] building (642/1699 modules)
[2K[1A[2K[G[24%] building (675/1782 modules)
[2K[1A[2K[G[24%] building (790/2156 modules)
[2K[1A[2K[G[24%] building (881/2213 modules)
[2K[1A[2K[G[24%] building (1049/2312 modules)
[2K[1A[2K[G[24%] building (1138/2400 modules)
[2K[1A[2K[G[24%] building (1190/2494 modules)
[2K[1A[2K[G[24%] building (1194/2496 modules)
[2K[1A[2K[G[24%] building (1237/2523 modules)
[2K[1A[2K[G[24%] building (1329/2572 modules)
[2K[1A[2K[G[24%] building (1428/2586 modules)
[2K[1A[2K[G[24%] building (1469/2587 modules)
[2K[1A[2K[G[24%] building (1534/2590 modules)
[2K[1A[2K[G[24%] building (1621/2649 modules)
[2K[1A[2K[G[24%] building (1763/2696 modules)
[2K[1A[2K[G[38%] building (1820/2698 modules)
[2K[1A[2K[G[51%] building (1824/2698 modules)
[2K[1A[2K[G[51%] building (2156/2765 modules)
[2K[1A[2K[G[65%] building (2783/2783 modules)
[2K[1A[2K[G[65%] building
[2K[1A[2K[G[69%] building (finish)
[2K[1A[2K[G[70%] sealing (finish module graph)
[2K[1A[2K[G[70%] sealing (finish module graph ResolverCachePlugin)
[2K[1A[2K[G[70%] sealing (finish module graph InferAsyncModulesPlugin)
[2K[1A[2K[G[70%] sealing (finish module graph FlagDependencyExportsPlugin)
npm ERR! Missing script: "dev"
npm ERR!
npm ERR! To see a list of scripts, run:
npm ERR! npm run
npm ERR! A complete log of this run can be found in:
npm ERR! /root/.npm/_logs/2022-10-30T04_06_45_496Z-debug-0.log
[2K[1A[2K[G[70%] sealing (finish module graph)
[2K[1A[2K[G[71%] sealing (plugins)
[2K[1A[2K[G[71%] sealing (plugins WarnCaseSensitiveModulesPlugin)
[2K[1A[2K[G[71%] sealing (plugins)
[2K[1A[2K[G[71%] sealing (dependencies optimization)
[2K[1A[2K[G[71%] sealing (dependencies optimization SideEffectsFlagPlugin)
[2K[1A[2K[G[71%] sealing (dependencies optimization)
[2K[1A[2K[G[72%] sealing (after dependencies optimization)
[2K[1A[2K[G[73%] sealing (chunk graph)
[2K[1A[2K[G[73%] sealing (after chunk graph)
[2K[1A[2K[G[74%] sealing (optimizing)
[2K[1A[2K[G[74%] sealing (module optimization)
[2K[1A[2K[G[75%] sealing (after module optimization)
[2K[1A[2K[G[76%] sealing (chunk optimization)
[2K[1A[2K[G[76%] sealing (chunk optimization EnsureChunkConditionsPlugin)
[2K[1A[2K[G[76%] sealing (chunk optimization RemoveEmptyChunksPlugin)
[2K[1A[2K[G[76%] sealing (chunk optimization MergeDuplicateChunksPlugin)
[2K[1A[2K[G[76%] sealing (chunk optimization SplitChunksPlugin)
[2K[1A[2K[G[76%] sealing (chunk optimization RemoveEmptyChunksPlugin)
[2K[1A[2K[G[76%] sealing (chunk optimization)
[2K[1A[2K[G[76%] sealing (after chunk optimization)
[2K[1A[2K[G[77%] sealing (module and chunk tree optimization)
[2K[1A[2K[G[77%] sealing (module and chunk tree optimization PersistentChildCompilerSinglet
onPlugin)
[2K[1A[2K[1A[2K[G[77%] sealing (module and chunk tree optimization)
[2K[1A[2K[G[78%] sealing (after module and chunk tree optimization)
[2K[1A[2K[G[78%] sealing (chunk modules optimization)
[2K[1A[2K[G[79%] sealing (after chunk modules optimization)
[2K[1A[2K[G[80%] sealing (module reviving)
[2K[1A[2K[G[80%] sealing (module reviving RecordIdsPlugin)
[2K[1A[2K[G[80%] sealing (module reviving)
[2K[1A[2K[G[80%] sealing (before module ids)
[2K[1A[2K[G[81%] sealing (module ids)
[2K[1A[2K[G[81%] sealing (module ids NamedModuleIdsPlugin)
[2K[1A[2K[G[81%] sealing (module ids)
[2K[1A[2K[G[82%] sealing (module id optimization)
[2K[1A[2K[G[82%] sealing (module id optimization)
[2K[1A[2K[G[83%] sealing (chunk reviving)
[2K[1A[2K[G[83%] sealing (chunk reviving RecordIdsPlugin)
[2K[1A[2K[G[83%] sealing (chunk reviving)
[2K[1A[2K[G[83%] sealing (before chunk ids)
[2K[1A[2K[G[84%] sealing (chunk ids)
[2K[1A[2K[G[84%] sealing (chunk ids NamedChunkIdsPlugin)
[2K[1A[2K[G[84%] sealing (chunk ids)
[2K[1A[2K[G[85%] sealing (chunk id optimization)
[2K[1A[2K[G[85%] sealing (after chunk id optimization)
[2K[1A[2K[G[86%] sealing (record modules)
[2K[1A[2K[G[86%] sealing (record modules RecordIdsPlugin)
[2K[1A[2K[G[86%] sealing (record modules)
[2K[1A[2K[G[87%] sealing (record chunks)
[2K[1A[2K[G[87%] sealing (record chunks RecordIdsPlugin)
[2K[1A[2K[G[87%] sealing (record chunks)
[2K[1A[2K[G[87%] sealing (module hashing)
[2K[1A[2K[G[88%] sealing (code generation)
[2K[1A[2K[G[89%] sealing (runtime requirements)
[2K[1A[2K[G[89%] sealing (hashing)
[2K[1A[2K[G[90%] sealing (after hashing)
[2K[1A[2K[G[91%] sealing (record hash)
[2K[1A[2K[G[91%] sealing (module assets processing)
[2K[1A[2K[G[92%] sealing (chunk assets processing)
error Command failed with signal "SIGKILL".
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
[2K[1A[2K[G[92%] sealing (asset processing)
[2K[1A[2K[G[92%] sealing (asset processing copy-webpack-plugin)
[2K[1A[2K[G[92%] sealing (asset processing HotModuleReplacementPlugin)
[2K[1A[2K[G[92%] sealing (asset processing PersistentChildCompilerSingletonPlugin)
[2K[1A[2K[G[92%] sealing (asset processing HtmlWebpackPlugin)
[2K[1A[2K[G[92%] sealing (asset processing)
[2K[1A[2K[G[93%] sealing (after asset optimization)
[2K[1A[2K[G[94%] sealing (recording)
[2K[1A[2K[G[94%] sealing (recording HotModuleReplacementPlugin)
[2K[1A[2K[G[94%] sealing (recording)
[2K[1A[2K[G[94%] sealing (after seal)
[2K[1A[2K[G[95%] emitting (emit)
[2K[1A[2K[G[98%] emitting (after emit)
[2K[1A[2K[GBuild finished at 12:06:52 by 0.000s
[2K[1A[2K[GBuild finished at 12:06:52 by 0.000s
[2K[1A[2K[GBuild finished at 12:06:52 by 0.000s
[2K[1A[2K[G DONE Compiled successfully in 37498ms12:06:52 PM
Build finished at 12:06:52 by 0.000s
[2K[1A[2K[G
App running at:
- Local: http://localhost:80/
- Network: http://10.0.16.11:80/
Note that the development build is not optimized.
To create a production build, run yarn build.
Build finished at 12:06:53 by 0.000s
[2K[1A[2K[GBuild finished at 12:06:53 by 0.000s
[2K[1A[2K[GBuild finished at 12:06:53 by 0.000s
[2K[1A[2K[GBuild finished at 12:06:53 by 0.000s
[2K[1A[2K[GBuild finished at 12:06:53 by 0.000s
[2K[1A[2K[GBuild finished at 12:06:53 by 0.000s
[2K[1A[2K[GBuild finished at 12:06:53 by 0.000s
[2K[1A[2K[GBuild finished at 12:06:53 by 0.000s
[2K[1A[2K[GBuild finished at 12:32:57 by 0.000s
[2K[1A[2K[GBuild finished at 12:32:57 by 0.000s
[2K[1A[2K[GBuild finished at 12:32:57 by 0.000s
[2K[1A[2K[GBuild finished at 12:32:57 by 0.000s
[2K[1A[2K[GBuild finished at 12:32:57 by 0.000s
[2K[1A[2K[GBuild finished at 12:33:29 by 0.002s
[2K[1A[2K[GBuild finished at 12:33:29 by 0.000s
[2K[1A[2K[GBuild finished at 12:33:29 by 0.000s
[2K[1A[2K[GBuild finished at 12:33:29 by 0.000s
[2K[1A[2K[GBuild finished at 12:33:29 by 0.000s
[2K[1A[2K[G