-
Notifications
You must be signed in to change notification settings - Fork 0
/
npm-debug.log.1e3a939d1a51ce41b6c6af02b9c2766a
12524 lines (12524 loc) · 930 KB
/
npm-debug.log.1e3a939d1a51ce41b6c6af02b9c2766a
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
46023 silly decomposeActions test [email protected]
46024 silly decomposeActions finalize [email protected]
46025 silly decomposeActions remove [email protected]
46026 silly decomposeActions remove [email protected]
46027 silly decomposeActions remove [email protected]
46028 silly decomposeActions remove [email protected]
46029 silly decomposeActions remove [email protected]
46030 silly decomposeActions remove [email protected]
46031 silly decomposeActions remove [email protected]
46032 silly decomposeActions fetch [email protected]
46033 silly decomposeActions extract [email protected]
46034 silly decomposeActions preinstall [email protected]
46035 silly decomposeActions build [email protected]
46036 silly decomposeActions install [email protected]
46037 silly decomposeActions postinstall [email protected]
46038 silly decomposeActions test [email protected]
46039 silly decomposeActions finalize [email protected]
46040 silly decomposeActions fetch [email protected]
46041 silly decomposeActions extract [email protected]
46042 silly decomposeActions preinstall [email protected]
46043 silly decomposeActions build [email protected]
46044 silly decomposeActions install [email protected]
46045 silly decomposeActions postinstall [email protected]
46046 silly decomposeActions test [email protected]
46047 silly decomposeActions finalize [email protected]
46048 silly decomposeActions fetch [email protected]
46049 silly decomposeActions extract [email protected]
46050 silly decomposeActions preinstall [email protected]
46051 silly decomposeActions build [email protected]
46052 silly decomposeActions install [email protected]
46053 silly decomposeActions postinstall [email protected]
46054 silly decomposeActions test [email protected]
46055 silly decomposeActions finalize [email protected]
46056 silly decomposeActions fetch [email protected]
46057 silly decomposeActions extract [email protected]
46058 silly decomposeActions preinstall [email protected]
46059 silly decomposeActions build [email protected]
46060 silly decomposeActions install [email protected]
46061 silly decomposeActions postinstall [email protected]
46062 silly decomposeActions test [email protected]
46063 silly decomposeActions finalize [email protected]
46064 silly decomposeActions fetch [email protected]
46065 silly decomposeActions extract [email protected]
46066 silly decomposeActions preinstall [email protected]
46067 silly decomposeActions build [email protected]
46068 silly decomposeActions install [email protected]
46069 silly decomposeActions postinstall [email protected]
46070 silly decomposeActions test [email protected]
46071 silly decomposeActions finalize [email protected]
46072 silly decomposeActions remove [email protected]
46073 silly decomposeActions remove [email protected]
46074 silly decomposeActions remove [email protected]
46075 silly decomposeActions remove [email protected]
46076 silly decomposeActions remove [email protected]
46077 silly decomposeActions remove [email protected]
46078 silly decomposeActions remove [email protected]
46079 silly decomposeActions remove [email protected]
46080 silly decomposeActions remove [email protected]
46081 silly decomposeActions remove [email protected]
46082 silly decomposeActions remove [email protected]
46083 silly decomposeActions remove [email protected]
46084 silly decomposeActions remove [email protected]
46085 silly decomposeActions remove [email protected]
46086 silly decomposeActions remove [email protected]
46087 silly decomposeActions remove [email protected]
46088 silly decomposeActions remove [email protected]
46089 silly decomposeActions remove [email protected]
46090 silly decomposeActions fetch [email protected]
46091 silly decomposeActions extract [email protected]
46092 silly decomposeActions preinstall [email protected]
46093 silly decomposeActions build [email protected]
46094 silly decomposeActions install [email protected]
46095 silly decomposeActions postinstall [email protected]
46096 silly decomposeActions test [email protected]
46097 silly decomposeActions finalize [email protected]
46098 silly decomposeActions remove [email protected]
46099 silly decomposeActions remove [email protected]
46100 silly decomposeActions remove [email protected]
46101 silly decomposeActions remove [email protected]
46102 silly decomposeActions remove [email protected]
46103 silly decomposeActions remove [email protected]
46104 silly decomposeActions remove [email protected]
46105 silly decomposeActions fetch [email protected]
46106 silly decomposeActions extract [email protected]
46107 silly decomposeActions preinstall [email protected]
46108 silly decomposeActions build [email protected]
46109 silly decomposeActions install [email protected]
46110 silly decomposeActions postinstall [email protected]
46111 silly decomposeActions test [email protected]
46112 silly decomposeActions finalize [email protected]
46113 silly decomposeActions remove [email protected]
46114 silly decomposeActions remove [email protected]
46115 silly decomposeActions fetch [email protected]
46116 silly decomposeActions extract [email protected]
46117 silly decomposeActions preinstall [email protected]
46118 silly decomposeActions build [email protected]
46119 silly decomposeActions install [email protected]
46120 silly decomposeActions postinstall [email protected]
46121 silly decomposeActions test [email protected]
46122 silly decomposeActions finalize [email protected]
46123 silly decomposeActions fetch [email protected]
46124 silly decomposeActions extract [email protected]
46125 silly decomposeActions preinstall [email protected]
46126 silly decomposeActions build [email protected]
46127 silly decomposeActions install [email protected]
46128 silly decomposeActions postinstall [email protected]
46129 silly decomposeActions test [email protected]
46130 silly decomposeActions finalize [email protected]
46131 silly decomposeActions fetch [email protected]
46132 silly decomposeActions extract [email protected]
46133 silly decomposeActions preinstall [email protected]
46134 silly decomposeActions build [email protected]
46135 silly decomposeActions install [email protected]
46136 silly decomposeActions postinstall [email protected]
46137 silly decomposeActions test [email protected]
46138 silly decomposeActions finalize [email protected]
46139 silly decomposeActions fetch [email protected]
46140 silly decomposeActions extract [email protected]
46141 silly decomposeActions preinstall [email protected]
46142 silly decomposeActions build [email protected]
46143 silly decomposeActions install [email protected]
46144 silly decomposeActions postinstall [email protected]
46145 silly decomposeActions test [email protected]
46146 silly decomposeActions finalize [email protected]
46147 silly decomposeActions fetch [email protected]
46148 silly decomposeActions extract [email protected]
46149 silly decomposeActions preinstall [email protected]
46150 silly decomposeActions build [email protected]
46151 silly decomposeActions install [email protected]
46152 silly decomposeActions postinstall [email protected]
46153 silly decomposeActions test [email protected]
46154 silly decomposeActions finalize [email protected]
46155 silly decomposeActions fetch [email protected]
46156 silly decomposeActions extract [email protected]
46157 silly decomposeActions preinstall [email protected]
46158 silly decomposeActions build [email protected]
46159 silly decomposeActions install [email protected]
46160 silly decomposeActions postinstall [email protected]
46161 silly decomposeActions test [email protected]
46162 silly decomposeActions finalize [email protected]
46163 silly decomposeActions remove [email protected]
46164 silly decomposeActions remove [email protected]
46165 silly decomposeActions remove [email protected]
46166 silly decomposeActions remove [email protected]
46167 silly decomposeActions fetch [email protected]
46168 silly decomposeActions extract [email protected]
46169 silly decomposeActions preinstall [email protected]
46170 silly decomposeActions build [email protected]
46171 silly decomposeActions install [email protected]
46172 silly decomposeActions postinstall [email protected]
46173 silly decomposeActions test [email protected]
46174 silly decomposeActions finalize [email protected]
46175 silly decomposeActions fetch [email protected]
46176 silly decomposeActions extract [email protected]
46177 silly decomposeActions preinstall [email protected]
46178 silly decomposeActions build [email protected]
46179 silly decomposeActions install [email protected]
46180 silly decomposeActions postinstall [email protected]
46181 silly decomposeActions test [email protected]
46182 silly decomposeActions finalize [email protected]
46183 silly decomposeActions fetch [email protected]
46184 silly decomposeActions extract [email protected]
46185 silly decomposeActions preinstall [email protected]
46186 silly decomposeActions build [email protected]
46187 silly decomposeActions install [email protected]
46188 silly decomposeActions postinstall [email protected]
46189 silly decomposeActions test [email protected]
46190 silly decomposeActions finalize [email protected]
46191 silly decomposeActions remove [email protected]
46192 silly decomposeActions remove [email protected]
46193 silly decomposeActions remove [email protected]
46194 silly decomposeActions remove [email protected]
46195 silly decomposeActions remove [email protected]
46196 silly decomposeActions remove [email protected]
46197 silly decomposeActions remove [email protected]
46198 silly decomposeActions remove [email protected]
46199 silly decomposeActions remove [email protected]
46200 silly decomposeActions remove [email protected]
46201 silly decomposeActions remove [email protected]
46202 silly decomposeActions remove [email protected]
46203 silly decomposeActions remove [email protected]
46204 silly decomposeActions remove [email protected]
46205 silly decomposeActions remove [email protected]
46206 silly decomposeActions remove [email protected]
46207 silly decomposeActions remove [email protected]
46208 silly decomposeActions remove [email protected]
46209 silly decomposeActions remove [email protected]
46210 silly decomposeActions remove [email protected]
46211 silly decomposeActions remove [email protected]
46212 silly decomposeActions remove [email protected]
46213 silly decomposeActions remove [email protected]
46214 silly decomposeActions remove [email protected]
46215 silly decomposeActions remove [email protected]
46216 silly decomposeActions remove [email protected]
46217 silly decomposeActions remove [email protected]
46218 silly decomposeActions remove [email protected]
46219 silly decomposeActions remove [email protected]
46220 silly decomposeActions remove [email protected]
46221 silly executeActions Starting
46222 silly install executeActions
46223 silly doSerial global-install 0
46224 silly doParallel fetch 118
46225 verbose lock using /home/vagrant/.npm/_locks/staging-a77273f3be3f8279.lock for /home/vagrant/Code/Laravel/node_modules/.staging
46226 silly doParallel extract 118
46227 silly extract [email protected]
46228 silly extract [email protected]
46229 silly extract [email protected]
46230 silly extract [email protected]
46231 silly extract [email protected]
46232 silly extract [email protected]
46233 silly extract [email protected]
46234 silly extract [email protected]
46235 silly extract [email protected]
46236 silly extract [email protected]
46237 silly extract [email protected]
46238 silly extract [email protected]
46239 silly extract [email protected]
46240 silly extract [email protected]
46241 silly extract [email protected]
46242 silly extract [email protected]
46243 silly extract [email protected]
46244 silly extract [email protected]
46245 silly extract [email protected]
46246 silly extract [email protected]
46247 silly extract [email protected]
46248 silly extract [email protected]
46249 silly extract [email protected]
46250 silly extract [email protected]
46251 silly extract [email protected]
46252 silly extract [email protected]
46253 silly extract [email protected]
46254 silly extract [email protected]
46255 silly extract [email protected]
46256 silly extract [email protected]
46257 silly extract [email protected]
46258 silly extract [email protected]
46259 silly extract [email protected]
46260 silly extract [email protected]
46261 silly extract [email protected]
46262 silly extract [email protected]
46263 silly extract [email protected]
46264 silly extract [email protected]
46265 silly extract [email protected]
46266 silly extract [email protected]
46267 silly extract [email protected]
46268 silly extract [email protected]
46269 silly extract [email protected]
46270 silly extract [email protected]
46271 silly extract [email protected]
46272 silly extract [email protected]
46273 silly extract [email protected]
46274 silly extract [email protected]
46275 silly extract [email protected]
46276 silly extract [email protected]
46277 silly extract [email protected]
46278 silly extract [email protected]
46279 silly extract [email protected]
46280 silly extract [email protected]
46281 silly extract [email protected]
46282 silly extract [email protected]
46283 silly extract [email protected]
46284 silly extract [email protected]
46285 silly extract [email protected]
46286 silly extract [email protected]
46287 silly extract [email protected]
46288 silly extract [email protected]
46289 silly extract [email protected]
46290 silly extract [email protected]
46291 silly extract [email protected]
46292 silly extract [email protected]
46293 silly extract [email protected]
46294 silly extract [email protected]
46295 silly extract [email protected]
46296 silly extract [email protected]
46297 silly extract [email protected]
46298 silly extract [email protected]
46299 silly extract [email protected]
46300 silly extract [email protected]
46301 silly extract [email protected]
46302 silly extract [email protected]
46303 silly extract [email protected]
46304 silly extract [email protected]
46305 silly extract [email protected]
46306 silly extract [email protected]
46307 silly extract [email protected]
46308 silly extract [email protected]
46309 silly extract [email protected]
46310 silly extract [email protected]
46311 silly extract [email protected]
46312 silly extract [email protected]
46313 silly extract [email protected]
46314 silly extract [email protected]
46315 silly extract [email protected]
46316 silly extract [email protected]
46317 silly extract [email protected]
46318 silly extract [email protected]
46319 silly extract [email protected]
46320 silly extract [email protected]
46321 silly extract [email protected]
46322 silly extract [email protected]
46323 silly extract [email protected]
46324 silly extract [email protected]
46325 silly extract [email protected]
46326 silly extract [email protected]
46327 silly extract [email protected]
46328 silly extract [email protected]
46329 silly extract [email protected]
46330 silly extract [email protected]
46331 silly extract [email protected]
46332 silly extract [email protected]
46333 silly extract [email protected]
46334 silly extract [email protected]
46335 silly extract [email protected]
46336 silly extract [email protected]
46337 silly extract [email protected]
46338 silly extract [email protected]
46339 silly extract [email protected]
46340 silly extract [email protected]
46341 silly extract [email protected]
46342 silly extract [email protected]
46343 silly extract [email protected]
46344 silly extract [email protected]
46345 verbose unbuild node_modules/.staging/array-union-4424ee3f32fc8cd98b6cec015692457a
46346 verbose unbuild node_modules/.staging/async-fbe6c5afa658a6db7336230ca5ea8a26
46347 verbose unbuild node_modules/.staging/jsonparse-705a8f9b2eccb144dddcdb0ee5a9dd61
46348 verbose unbuild node_modules/.staging/array-uniq-3cd53fe7ac43db80b442ac32bf02cbee
46349 verbose unbuild node_modules/.staging/through2-b0408b1eb4f2879d0a3cb0aa35690cf2
46350 verbose unbuild node_modules/.staging/Base64-51a230fbff4c36c04749fec310735044
46351 verbose unbuild node_modules/.staging/bufferstreams-ee4a27285d138043a316787c19183308
46352 verbose unbuild node_modules/.staging/xtend-a60b168ce2134f4f5ba532bc20979f67
46353 verbose unbuild node_modules/.staging/xtend-b32a4b7e79e5214eb9bceb21702bf5d5
46354 verbose unbuild node_modules/.staging/xtend-071cd1ba18b35ec6ca1d2dbbb40bfc9b
46355 verbose unbuild node_modules/.staging/defined-c393c097ea9c8eee36dfd9e80fe7f8b6
46356 verbose unbuild node_modules/.staging/commander-1e043ca8dff1fd42f9411abea16a9596
46357 verbose unbuild node_modules/.staging/source-map-39a666a58c1d848c654c7310be792fb7
46358 verbose unbuild node_modules/.staging/source-map-c496c3d6f60a6434b65d02077bb519c0
46359 verbose unbuild node_modules/.staging/convert-source-map-7d2805701b7d8e1f06b9fcbe564127ed
46360 verbose unbuild node_modules/.staging/dargs-60196836223ca6a958129d1b4558eb74
46361 verbose unbuild node_modules/.staging/jsonparse-b9ec63de59f9875360c0cae96d6bdee1
46362 verbose unbuild node_modules/.staging/end-of-stream-5c27dd645111c5ba606d4c3ed4bcd32c
46363 verbose unbuild node_modules/.staging/isobject-2abda067cead63115830a35df385be3f
46364 verbose unbuild node_modules/.staging/async-c4b18ea50e9ce19b1a41c6b2e89da561
46365 verbose unbuild node_modules/.staging/array-differ-6ae4403d5db048b171880f73643b83d4
46366 verbose unbuild node_modules/.staging/duplexify-7f68a12802a4f707516aa0d52917bdc0
46367 verbose unbuild node_modules/.staging/del-7cf43e60bd622f087e3ae595f7ee47d0
46368 verbose unbuild node_modules/.staging/glob-35a94ad3893587afc3845d7bd1321110
46369 verbose unbuild node_modules/.staging/globby-503dae26324f358485801af6c7345d40
46370 verbose unbuild node_modules/.staging/object-assign-56bee8f059593cd993a8808fd76bb4e1
46371 verbose unbuild node_modules/.staging/readable-stream-762bb42536481e401030840db9875b35
46372 verbose unbuild node_modules/.staging/through2-6277985c57ba40d416cc173f339f9d9b
46373 verbose unbuild node_modules/.staging/array-union-07f35417180101ab4d887a49c2b15cd3
46374 verbose unbuild node_modules/.staging/minimatch-1f25d2aeddf71058042c0689e69a552f
46375 verbose unbuild node_modules/.staging/glob-4ad7d65a99de6c2eae4e92f4150887a4
46376 verbose unbuild node_modules/.staging/findup-sync-4589d1c4941aa797f3450ebd1611f537
46377 verbose unbuild node_modules/.staging/gulp-load-plugins-942f826ce10d49a15750472eada0b624
46378 verbose unbuild node_modules/.staging/minimatch-51ac17dce9843cbe1abe5eadba987ce9
46379 verbose unbuild node_modules/.staging/readable-stream-dbec6dbbac66d81e2a15d54d72daa2e7
46380 verbose unbuild node_modules/.staging/node-notifier-5105bfa62b28e21c1a135b82479d5b20
46381 verbose unbuild node_modules/.staging/multimatch-ac54d79b49dca49e346ea50e141a635f
46382 verbose unbuild node_modules/.staging/through2-1fafba5c97624710b937c57c0e07bd27
46383 verbose unbuild node_modules/.staging/xtend-59cf315e67c44932b9d24dd2414e18e5
46384 verbose unbuild node_modules/.staging/object-assign-eedcc92e3d334cc952ad52b40411da0c
46385 verbose unbuild node_modules/.staging/glob-watcher-2195c5b1ea8f60a21f02b9297e7a9518
46386 verbose unbuild node_modules/.staging/gulp-phpunit-6a76a28778d94ad895ea19ee54c72f77
46387 verbose unbuild node_modules/.staging/glob-7ae0c48c5f497c2c410d97feff7a66d4
46388 verbose unbuild node_modules/.staging/graceful-fs-91661ebc1128895bb21ceb26a6ad6cf5
46389 verbose unbuild node_modules/.staging/readable-stream-39222c3c857e9c6c2ac60325dcfaa66c
46390 verbose unbuild node_modules/.staging/object-assign-ef923ebaeb1ea9c20c895a9332cb3fbd
46391 verbose unbuild node_modules/.staging/through2-010a9e9ba1bd894c9f57cba54d1a9ab6
46392 verbose unbuild node_modules/.staging/vinyl-c450b337d4ef4abd06a3b9ecfaf589a1
46393 verbose unbuild node_modules/.staging/gulp-shell-bc3ce78c6c291a044c6bd28997dacf4a
46394 verbose unbuild node_modules/.staging/through2-2ba77ba36339cfc5fb73de8fdcfdb7de
46395 verbose unbuild node_modules/.staging/lodash.defaults-fced03f0cde9b8b89e88f75cdb10146b
46396 verbose unbuild node_modules/.staging/http-browserify-e1476d52afe29d56e39addaeb46bb459
46397 verbose unbuild node_modules/.staging/source-map-3faa6e453a715baed32291686feaa735
46398 verbose unbuild node_modules/.staging/inline-source-map-8f48a888a88e7ad92047877fdc59d74f
46399 verbose unbuild node_modules/.staging/combine-source-map-ea3409878c13abc8af3e72b662cdcbd5
46400 verbose unbuild node_modules/.staging/jsonparse-4f890f57ce044af08108fc455c5e0a62
46401 verbose unbuild node_modules/.staging/process-eced1b2826ffebf8a174b0f995de76be
46402 verbose unbuild node_modules/.staging/source-map-5e6e3e26540d9d1f8316e228a3f0b4f2
46403 verbose unbuild node_modules/.staging/inline-source-map-e57aadcf12104f3c4b5bf237cb7c0b09
46404 verbose unbuild node_modules/.staging/clone-c1c7b14866982f372564d4f3aaa0716e
46405 verbose unbuild node_modules/.staging/install-3a078995a76e57b1769f81c07b319a63
46406 verbose unbuild node_modules/.staging/jsonparse-40e8c6bbf5f6097d3fefba8dd96f997b
46407 verbose unbuild node_modules/.staging/lodash.defaults-432454bb13b9ff277d34da2777656595
46408 verbose unbuild node_modules/.staging/isobject-6c9fc7a3ed44a21480880f5dde663ef4
46409 verbose unbuild node_modules/.staging/combine-source-map-55fa4d614c9d01f614092e85c692e8da
46410 verbose unbuild node_modules/.staging/lodash.keys-75b4321db7c63cf24787fb4899959482
46411 verbose unbuild node_modules/.staging/lodash.defaults-9cd440dbaa417de26175f106c730ee7e
46412 verbose unbuild node_modules/.staging/md5-o-matic-91a139e190d0afb41c1a9fc58586bdb8
46413 verbose unbuild node_modules/.staging/md5-hex-b002654948e5aa91b5cfefe6917f1017
46414 verbose unbuild node_modules/.staging/gulp-minify-css-cab87f2befd423ac6c9bdc4ffc8f6f76
46415 verbose unbuild node_modules/.staging/memory-cache-800e61612c9307dcd90b2425794ff307
46416 verbose unbuild node_modules/.staging/jsonparse-2daa3827dd75c05a9e902ba4340ff7eb
46417 verbose unbuild node_modules/.staging/minimatch-56b8aaecad2282ed14823330af59a2e0
46418 verbose unbuild node_modules/.staging/multimatch-4ee6d6b03b4cd425390d2467e2dcc04e
46419 verbose unbuild node_modules/.staging/array-differ-ac2510824c7ac56d36606baea3641ba8
46420 verbose unbuild node_modules/.staging/gulp-filter-68b6e34a2174d76fe9e3e254f077c327
46421 verbose unbuild node_modules/.staging/isobject-139c46152b7929ea6ec04ca3fdd15a41
46422 verbose unbuild node_modules/.staging/source-map-65b543b581555b7cbc998d4cbb5ca4ce
46423 verbose unbuild node_modules/.staging/postcss-532db73c7f46c3d273a6f1788c9d2ded
46424 verbose unbuild node_modules/.staging/autoprefixer-core-ea09f543af1491b32b12e264a946bfd9
46425 verbose unbuild node_modules/.staging/process-76e287bef23105304e95a935024541c1
46426 verbose unbuild node_modules/.staging/gulp-autoprefixer-473ee49f941075d043c55f4917500113
46427 verbose unbuild node_modules/.staging/punycode-59e6a21e937b7e6eb2daf8a1e94d5be2
46428 verbose unbuild node_modules/.staging/qs-ed5ceb759d81d84a89798029ba8c9aa7
46429 verbose unbuild node_modules/.staging/gulp-notify-21bcf4a1b6a84c326c7065f66980db87
46430 verbose unbuild node_modules/.staging/require-dir-483c763bad2d2e09a2e1212ead683523
46431 verbose unbuild node_modules/.staging/shallow-copy-8f42b3d7eedf41527f17b6dc751056f9
46432 verbose unbuild node_modules/.staging/stream-browserify-c81a0bea730120d2e7aa7583a9b3a39e
46433 verbose unbuild node_modules/.staging/stream-http-ac6539ffc94c14c8220f0be7647edf9e
46434 verbose unbuild node_modules/.staging/gulp-phpspec-f3dd0bbfb5b0fe5e883b48a46ff93595
46435 verbose unbuild node_modules/.staging/through2-filter-0e261324adba25676b8f44b4043b4790
46436 verbose unbuild node_modules/.staging/glob-stream-d18c795261b60f0cb071b0c966fe6fec
46437 verbose unbuild node_modules/.staging/unique-stream-88a479d423b66f6dbbc51e87dbe9517a
46438 verbose unbuild node_modules/.staging/vinyl-fs-c2714b7f3ba2fc9c28684b040eb264ff
46439 verbose unbuild node_modules/.staging/punycode-8a726ccbc8c1da1057f3fc3fefd436fd
46440 verbose unbuild node_modules/.staging/punycode-085ca161b081a0870f60049ca75f5d62
46441 verbose unbuild node_modules/.staging/gulp-rev-05921f8b2bdc44c98d86f6aa20cd866d
46442 verbose unbuild node_modules/.staging/duplexer2-e89b62e8c881efb2e4317494c5cf141c
46443 verbose unbuild node_modules/.staging/jsonparse-53164516d2a7a2e70775920ee3b64c5b
46444 verbose unbuild node_modules/.staging/process-9330ad6b0c3dcae4a8f0b58a39e07fea
46445 verbose unbuild node_modules/.staging/stream-browserify-3202b96c1d8e0c32eb8925551e019b3b
46446 verbose unbuild node_modules/.staging/process-a9f5ed62d366de1d8bc4d471757f7288
46447 verbose unbuild node_modules/.staging/gulp-ruby-sass-6d679d655413474a9344cbe1432df892
46448 verbose unbuild node_modules/.staging/laravel-elixir-0bfb0e5077da7247d1b8bd11a8a4dcc5
46449 verbose unbuild node_modules/.staging/JSONStream-2725add18f400bf28e6f2ef28c45b2d3
46450 verbose unbuild node_modules/.staging/clean-css-a6041700ea45186156e1958813350725
46451 verbose unbuild node_modules/.staging/JSONStream-7cad4aa8c2cb0e8140838224c81635f9
46452 verbose unbuild node_modules/.staging/semver-40c28047455ec5c7bd99daa454ce396a
46453 verbose unbuild node_modules/.staging/strip-bom-94de7209189aaab848cee5620bc7beb6
46454 verbose unbuild node_modules/.staging/browser-pack-0624a17990ec3cdedf9bab1259a2d402
46455 verbose unbuild node_modules/.staging/JSONStream-88e17647ab08f49c6ac101169f0b725d
46456 verbose unbuild node_modules/.staging/JSONStream-872a09755e16b98e10ec13a338552d17
46457 verbose unbuild node_modules/.staging/mime-3f4fb5050e445372b6770dea2d29d314
46458 verbose unbuild node_modules/.staging/JSONStream-0b920717dfcf97a01cb48a0d3c4502c2
46459 verbose unbuild node_modules/.staging/npm-067b44f1fc55baa3ae8bcae3fffb8f57
46460 verbose unbuild node_modules/.staging/JSONStream-3cc549ff59a56cd685a8e9cc239bffd1
46461 verbose unbuild node_modules/.staging/browserify-b6ee70849335cb76876dca8c8e01cd33
46462 verbose unbuild node_modules/.staging/win-spawn-91044225bfcd86d13040932735622b73
46463 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/async-fbe6c5afa658a6db7336230ca5ea8a26 is being purged from base /home/vagrant/Code/Laravel
46464 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/array-union-4424ee3f32fc8cd98b6cec015692457a is being purged from base /home/vagrant/Code/Laravel
46465 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/jsonparse-705a8f9b2eccb144dddcdb0ee5a9dd61 is being purged from base /home/vagrant/Code/Laravel
46466 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/array-uniq-3cd53fe7ac43db80b442ac32bf02cbee is being purged from base /home/vagrant/Code/Laravel
46467 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/through2-b0408b1eb4f2879d0a3cb0aa35690cf2 is being purged from base /home/vagrant/Code/Laravel
46468 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/Base64-51a230fbff4c36c04749fec310735044 is being purged from base /home/vagrant/Code/Laravel
46469 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/bufferstreams-ee4a27285d138043a316787c19183308 is being purged from base /home/vagrant/Code/Laravel
46470 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/xtend-a60b168ce2134f4f5ba532bc20979f67 is being purged from base /home/vagrant/Code/Laravel
46471 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/defined-c393c097ea9c8eee36dfd9e80fe7f8b6 is being purged from base /home/vagrant/Code/Laravel
46472 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/xtend-b32a4b7e79e5214eb9bceb21702bf5d5 is being purged from base /home/vagrant/Code/Laravel
46473 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/xtend-071cd1ba18b35ec6ca1d2dbbb40bfc9b is being purged from base /home/vagrant/Code/Laravel
46474 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/commander-1e043ca8dff1fd42f9411abea16a9596 is being purged from base /home/vagrant/Code/Laravel
46475 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/source-map-39a666a58c1d848c654c7310be792fb7 is being purged from base /home/vagrant/Code/Laravel
46476 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/convert-source-map-7d2805701b7d8e1f06b9fcbe564127ed is being purged from base /home/vagrant/Code/Laravel
46477 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/source-map-c496c3d6f60a6434b65d02077bb519c0 is being purged from base /home/vagrant/Code/Laravel
46478 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/dargs-60196836223ca6a958129d1b4558eb74 is being purged from base /home/vagrant/Code/Laravel
46479 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/jsonparse-b9ec63de59f9875360c0cae96d6bdee1 is being purged from base /home/vagrant/Code/Laravel
46480 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/end-of-stream-5c27dd645111c5ba606d4c3ed4bcd32c is being purged from base /home/vagrant/Code/Laravel
46481 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/isobject-2abda067cead63115830a35df385be3f is being purged from base /home/vagrant/Code/Laravel
46482 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/async-c4b18ea50e9ce19b1a41c6b2e89da561 is being purged from base /home/vagrant/Code/Laravel
46483 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/array-differ-6ae4403d5db048b171880f73643b83d4 is being purged from base /home/vagrant/Code/Laravel
46484 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/del-7cf43e60bd622f087e3ae595f7ee47d0 is being purged from base /home/vagrant/Code/Laravel
46485 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/glob-35a94ad3893587afc3845d7bd1321110 is being purged from base /home/vagrant/Code/Laravel
46486 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/duplexify-7f68a12802a4f707516aa0d52917bdc0 is being purged from base /home/vagrant/Code/Laravel
46487 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/globby-503dae26324f358485801af6c7345d40 is being purged from base /home/vagrant/Code/Laravel
46488 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/object-assign-56bee8f059593cd993a8808fd76bb4e1 is being purged from base /home/vagrant/Code/Laravel
46489 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/readable-stream-762bb42536481e401030840db9875b35 is being purged from base /home/vagrant/Code/Laravel
46490 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/through2-6277985c57ba40d416cc173f339f9d9b is being purged from base /home/vagrant/Code/Laravel
46491 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/minimatch-1f25d2aeddf71058042c0689e69a552f is being purged from base /home/vagrant/Code/Laravel
46492 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/array-union-07f35417180101ab4d887a49c2b15cd3 is being purged from base /home/vagrant/Code/Laravel
46493 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/glob-4ad7d65a99de6c2eae4e92f4150887a4 is being purged from base /home/vagrant/Code/Laravel
46494 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/findup-sync-4589d1c4941aa797f3450ebd1611f537 is being purged from base /home/vagrant/Code/Laravel
46495 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/gulp-load-plugins-942f826ce10d49a15750472eada0b624 is being purged from base /home/vagrant/Code/Laravel
46496 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/readable-stream-dbec6dbbac66d81e2a15d54d72daa2e7 is being purged from base /home/vagrant/Code/Laravel
46497 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/minimatch-51ac17dce9843cbe1abe5eadba987ce9 is being purged from base /home/vagrant/Code/Laravel
46498 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/node-notifier-5105bfa62b28e21c1a135b82479d5b20 is being purged from base /home/vagrant/Code/Laravel
46499 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/multimatch-ac54d79b49dca49e346ea50e141a635f is being purged from base /home/vagrant/Code/Laravel
46500 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/through2-1fafba5c97624710b937c57c0e07bd27 is being purged from base /home/vagrant/Code/Laravel
46501 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/xtend-59cf315e67c44932b9d24dd2414e18e5 is being purged from base /home/vagrant/Code/Laravel
46502 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/object-assign-eedcc92e3d334cc952ad52b40411da0c is being purged from base /home/vagrant/Code/Laravel
46503 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/glob-watcher-2195c5b1ea8f60a21f02b9297e7a9518 is being purged from base /home/vagrant/Code/Laravel
46504 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/gulp-phpunit-6a76a28778d94ad895ea19ee54c72f77 is being purged from base /home/vagrant/Code/Laravel
46505 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/glob-7ae0c48c5f497c2c410d97feff7a66d4 is being purged from base /home/vagrant/Code/Laravel
46506 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/graceful-fs-91661ebc1128895bb21ceb26a6ad6cf5 is being purged from base /home/vagrant/Code/Laravel
46507 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/readable-stream-39222c3c857e9c6c2ac60325dcfaa66c is being purged from base /home/vagrant/Code/Laravel
46508 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/object-assign-ef923ebaeb1ea9c20c895a9332cb3fbd is being purged from base /home/vagrant/Code/Laravel
46509 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/through2-010a9e9ba1bd894c9f57cba54d1a9ab6 is being purged from base /home/vagrant/Code/Laravel
46510 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/vinyl-c450b337d4ef4abd06a3b9ecfaf589a1 is being purged from base /home/vagrant/Code/Laravel
46511 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/through2-2ba77ba36339cfc5fb73de8fdcfdb7de is being purged from base /home/vagrant/Code/Laravel
46512 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/lodash.defaults-fced03f0cde9b8b89e88f75cdb10146b is being purged from base /home/vagrant/Code/Laravel
46513 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/gulp-shell-bc3ce78c6c291a044c6bd28997dacf4a is being purged from base /home/vagrant/Code/Laravel
46514 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/http-browserify-e1476d52afe29d56e39addaeb46bb459 is being purged from base /home/vagrant/Code/Laravel
46515 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/inline-source-map-8f48a888a88e7ad92047877fdc59d74f is being purged from base /home/vagrant/Code/Laravel
46516 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/combine-source-map-ea3409878c13abc8af3e72b662cdcbd5 is being purged from base /home/vagrant/Code/Laravel
46517 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/source-map-3faa6e453a715baed32291686feaa735 is being purged from base /home/vagrant/Code/Laravel
46518 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/jsonparse-4f890f57ce044af08108fc455c5e0a62 is being purged from base /home/vagrant/Code/Laravel
46519 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/source-map-5e6e3e26540d9d1f8316e228a3f0b4f2 is being purged from base /home/vagrant/Code/Laravel
46520 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/process-eced1b2826ffebf8a174b0f995de76be is being purged from base /home/vagrant/Code/Laravel
46521 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/clone-c1c7b14866982f372564d4f3aaa0716e is being purged from base /home/vagrant/Code/Laravel
46522 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/inline-source-map-e57aadcf12104f3c4b5bf237cb7c0b09 is being purged from base /home/vagrant/Code/Laravel
46523 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/jsonparse-40e8c6bbf5f6097d3fefba8dd96f997b is being purged from base /home/vagrant/Code/Laravel
46524 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/install-3a078995a76e57b1769f81c07b319a63 is being purged from base /home/vagrant/Code/Laravel
46525 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/lodash.defaults-432454bb13b9ff277d34da2777656595 is being purged from base /home/vagrant/Code/Laravel
46526 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/combine-source-map-55fa4d614c9d01f614092e85c692e8da is being purged from base /home/vagrant/Code/Laravel
46527 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/isobject-6c9fc7a3ed44a21480880f5dde663ef4 is being purged from base /home/vagrant/Code/Laravel
46528 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/lodash.keys-75b4321db7c63cf24787fb4899959482 is being purged from base /home/vagrant/Code/Laravel
46529 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/lodash.defaults-9cd440dbaa417de26175f106c730ee7e is being purged from base /home/vagrant/Code/Laravel
46530 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/md5-hex-b002654948e5aa91b5cfefe6917f1017 is being purged from base /home/vagrant/Code/Laravel
46531 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/md5-o-matic-91a139e190d0afb41c1a9fc58586bdb8 is being purged from base /home/vagrant/Code/Laravel
46532 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/gulp-minify-css-cab87f2befd423ac6c9bdc4ffc8f6f76 is being purged from base /home/vagrant/Code/Laravel
46533 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/memory-cache-800e61612c9307dcd90b2425794ff307 is being purged from base /home/vagrant/Code/Laravel
46534 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/minimatch-56b8aaecad2282ed14823330af59a2e0 is being purged from base /home/vagrant/Code/Laravel
46535 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/multimatch-4ee6d6b03b4cd425390d2467e2dcc04e is being purged from base /home/vagrant/Code/Laravel
46536 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/jsonparse-2daa3827dd75c05a9e902ba4340ff7eb is being purged from base /home/vagrant/Code/Laravel
46537 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/array-differ-ac2510824c7ac56d36606baea3641ba8 is being purged from base /home/vagrant/Code/Laravel
46538 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/gulp-filter-68b6e34a2174d76fe9e3e254f077c327 is being purged from base /home/vagrant/Code/Laravel
46539 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/isobject-139c46152b7929ea6ec04ca3fdd15a41 is being purged from base /home/vagrant/Code/Laravel
46540 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/postcss-532db73c7f46c3d273a6f1788c9d2ded is being purged from base /home/vagrant/Code/Laravel
46541 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/source-map-65b543b581555b7cbc998d4cbb5ca4ce is being purged from base /home/vagrant/Code/Laravel
46542 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/autoprefixer-core-ea09f543af1491b32b12e264a946bfd9 is being purged from base /home/vagrant/Code/Laravel
46543 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/process-76e287bef23105304e95a935024541c1 is being purged from base /home/vagrant/Code/Laravel
46544 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/gulp-autoprefixer-473ee49f941075d043c55f4917500113 is being purged from base /home/vagrant/Code/Laravel
46545 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/punycode-59e6a21e937b7e6eb2daf8a1e94d5be2 is being purged from base /home/vagrant/Code/Laravel
46546 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/qs-ed5ceb759d81d84a89798029ba8c9aa7 is being purged from base /home/vagrant/Code/Laravel
46547 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/gulp-notify-21bcf4a1b6a84c326c7065f66980db87 is being purged from base /home/vagrant/Code/Laravel
46548 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/require-dir-483c763bad2d2e09a2e1212ead683523 is being purged from base /home/vagrant/Code/Laravel
46549 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/shallow-copy-8f42b3d7eedf41527f17b6dc751056f9 is being purged from base /home/vagrant/Code/Laravel
46550 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/stream-browserify-c81a0bea730120d2e7aa7583a9b3a39e is being purged from base /home/vagrant/Code/Laravel
46551 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/stream-http-ac6539ffc94c14c8220f0be7647edf9e is being purged from base /home/vagrant/Code/Laravel
46552 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/gulp-phpspec-f3dd0bbfb5b0fe5e883b48a46ff93595 is being purged from base /home/vagrant/Code/Laravel
46553 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/through2-filter-0e261324adba25676b8f44b4043b4790 is being purged from base /home/vagrant/Code/Laravel
46554 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/glob-stream-d18c795261b60f0cb071b0c966fe6fec is being purged from base /home/vagrant/Code/Laravel
46555 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/unique-stream-88a479d423b66f6dbbc51e87dbe9517a is being purged from base /home/vagrant/Code/Laravel
46556 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/vinyl-fs-c2714b7f3ba2fc9c28684b040eb264ff is being purged from base /home/vagrant/Code/Laravel
46557 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/punycode-8a726ccbc8c1da1057f3fc3fefd436fd is being purged from base /home/vagrant/Code/Laravel
46558 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/punycode-085ca161b081a0870f60049ca75f5d62 is being purged from base /home/vagrant/Code/Laravel
46559 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/duplexer2-e89b62e8c881efb2e4317494c5cf141c is being purged from base /home/vagrant/Code/Laravel
46560 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/gulp-rev-05921f8b2bdc44c98d86f6aa20cd866d is being purged from base /home/vagrant/Code/Laravel
46561 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/jsonparse-53164516d2a7a2e70775920ee3b64c5b is being purged from base /home/vagrant/Code/Laravel
46562 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/process-9330ad6b0c3dcae4a8f0b58a39e07fea is being purged from base /home/vagrant/Code/Laravel
46563 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/stream-browserify-3202b96c1d8e0c32eb8925551e019b3b is being purged from base /home/vagrant/Code/Laravel
46564 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/process-a9f5ed62d366de1d8bc4d471757f7288 is being purged from base /home/vagrant/Code/Laravel
46565 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/laravel-elixir-0bfb0e5077da7247d1b8bd11a8a4dcc5 is being purged from base /home/vagrant/Code/Laravel
46566 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/async-fbe6c5afa658a6db7336230ca5ea8a26
46567 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/array-union-4424ee3f32fc8cd98b6cec015692457a
46568 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/gulp-ruby-sass-6d679d655413474a9344cbe1432df892 is being purged from base /home/vagrant/Code/Laravel
46569 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/jsonparse-705a8f9b2eccb144dddcdb0ee5a9dd61
46570 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/array-uniq-3cd53fe7ac43db80b442ac32bf02cbee
46571 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/JSONStream-2725add18f400bf28e6f2ef28c45b2d3 is being purged from base /home/vagrant/Code/Laravel
46572 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/through2-b0408b1eb4f2879d0a3cb0aa35690cf2
46573 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/Base64-51a230fbff4c36c04749fec310735044
46574 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/xtend-a60b168ce2134f4f5ba532bc20979f67
46575 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/bufferstreams-ee4a27285d138043a316787c19183308
46576 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/defined-c393c097ea9c8eee36dfd9e80fe7f8b6
46577 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/xtend-071cd1ba18b35ec6ca1d2dbbb40bfc9b
46578 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/xtend-b32a4b7e79e5214eb9bceb21702bf5d5
46579 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/commander-1e043ca8dff1fd42f9411abea16a9596
46580 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/convert-source-map-7d2805701b7d8e1f06b9fcbe564127ed
46581 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/source-map-39a666a58c1d848c654c7310be792fb7
46582 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/source-map-c496c3d6f60a6434b65d02077bb519c0
46583 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/clean-css-a6041700ea45186156e1958813350725 is being purged from base /home/vagrant/Code/Laravel
46584 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/dargs-60196836223ca6a958129d1b4558eb74
46585 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/jsonparse-b9ec63de59f9875360c0cae96d6bdee1
46586 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/JSONStream-7cad4aa8c2cb0e8140838224c81635f9 is being purged from base /home/vagrant/Code/Laravel
46587 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/end-of-stream-5c27dd645111c5ba606d4c3ed4bcd32c
46588 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/isobject-2abda067cead63115830a35df385be3f
46589 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/async-c4b18ea50e9ce19b1a41c6b2e89da561
46590 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/array-differ-6ae4403d5db048b171880f73643b83d4
46591 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/del-7cf43e60bd622f087e3ae595f7ee47d0
46592 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/glob-35a94ad3893587afc3845d7bd1321110
46593 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/duplexify-7f68a12802a4f707516aa0d52917bdc0
46594 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/globby-503dae26324f358485801af6c7345d40
46595 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/object-assign-56bee8f059593cd993a8808fd76bb4e1
46596 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/readable-stream-762bb42536481e401030840db9875b35
46597 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/through2-6277985c57ba40d416cc173f339f9d9b
46598 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/minimatch-1f25d2aeddf71058042c0689e69a552f
46599 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/array-union-07f35417180101ab4d887a49c2b15cd3
46600 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/glob-4ad7d65a99de6c2eae4e92f4150887a4
46601 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/gulp-load-plugins-942f826ce10d49a15750472eada0b624
46602 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/findup-sync-4589d1c4941aa797f3450ebd1611f537
46603 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/readable-stream-dbec6dbbac66d81e2a15d54d72daa2e7
46604 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/minimatch-51ac17dce9843cbe1abe5eadba987ce9
46605 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/semver-40c28047455ec5c7bd99daa454ce396a is being purged from base /home/vagrant/Code/Laravel
46606 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/node-notifier-5105bfa62b28e21c1a135b82479d5b20
46607 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/xtend-59cf315e67c44932b9d24dd2414e18e5
46608 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/object-assign-eedcc92e3d334cc952ad52b40411da0c
46609 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/multimatch-ac54d79b49dca49e346ea50e141a635f
46610 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/through2-1fafba5c97624710b937c57c0e07bd27
46611 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/glob-watcher-2195c5b1ea8f60a21f02b9297e7a9518
46612 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/gulp-phpunit-6a76a28778d94ad895ea19ee54c72f77
46613 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/glob-7ae0c48c5f497c2c410d97feff7a66d4
46614 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/graceful-fs-91661ebc1128895bb21ceb26a6ad6cf5
46615 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/readable-stream-39222c3c857e9c6c2ac60325dcfaa66c
46616 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/object-assign-ef923ebaeb1ea9c20c895a9332cb3fbd
46617 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/strip-bom-94de7209189aaab848cee5620bc7beb6 is being purged from base /home/vagrant/Code/Laravel
46618 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/vinyl-c450b337d4ef4abd06a3b9ecfaf589a1
46619 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/through2-010a9e9ba1bd894c9f57cba54d1a9ab6
46620 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/lodash.defaults-fced03f0cde9b8b89e88f75cdb10146b
46621 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/through2-2ba77ba36339cfc5fb73de8fdcfdb7de
46622 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/gulp-shell-bc3ce78c6c291a044c6bd28997dacf4a
46623 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/http-browserify-e1476d52afe29d56e39addaeb46bb459
46624 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/inline-source-map-8f48a888a88e7ad92047877fdc59d74f
46625 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/browser-pack-0624a17990ec3cdedf9bab1259a2d402 is being purged from base /home/vagrant/Code/Laravel
46626 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/source-map-3faa6e453a715baed32291686feaa735
46627 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/jsonparse-4f890f57ce044af08108fc455c5e0a62
46628 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/combine-source-map-ea3409878c13abc8af3e72b662cdcbd5
46629 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/JSONStream-88e17647ab08f49c6ac101169f0b725d is being purged from base /home/vagrant/Code/Laravel
46630 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/process-eced1b2826ffebf8a174b0f995de76be
46631 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/source-map-5e6e3e26540d9d1f8316e228a3f0b4f2
46632 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/clone-c1c7b14866982f372564d4f3aaa0716e
46633 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/inline-source-map-e57aadcf12104f3c4b5bf237cb7c0b09
46634 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/install-3a078995a76e57b1769f81c07b319a63
46635 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/lodash.defaults-432454bb13b9ff277d34da2777656595
46636 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/jsonparse-40e8c6bbf5f6097d3fefba8dd96f997b
46637 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/combine-source-map-55fa4d614c9d01f614092e85c692e8da
46638 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/isobject-6c9fc7a3ed44a21480880f5dde663ef4
46639 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/JSONStream-872a09755e16b98e10ec13a338552d17 is being purged from base /home/vagrant/Code/Laravel
46640 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/lodash.defaults-9cd440dbaa417de26175f106c730ee7e
46641 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/md5-hex-b002654948e5aa91b5cfefe6917f1017
46642 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/md5-o-matic-91a139e190d0afb41c1a9fc58586bdb8
46643 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/lodash.keys-75b4321db7c63cf24787fb4899959482
46644 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/gulp-minify-css-cab87f2befd423ac6c9bdc4ffc8f6f76
46645 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/mime-3f4fb5050e445372b6770dea2d29d314 is being purged from base /home/vagrant/Code/Laravel
46646 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/memory-cache-800e61612c9307dcd90b2425794ff307
46647 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/minimatch-56b8aaecad2282ed14823330af59a2e0
46648 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/JSONStream-0b920717dfcf97a01cb48a0d3c4502c2 is being purged from base /home/vagrant/Code/Laravel
46649 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/multimatch-4ee6d6b03b4cd425390d2467e2dcc04e
46650 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/jsonparse-2daa3827dd75c05a9e902ba4340ff7eb
46651 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/array-differ-ac2510824c7ac56d36606baea3641ba8
46652 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/gulp-filter-68b6e34a2174d76fe9e3e254f077c327
46653 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/isobject-139c46152b7929ea6ec04ca3fdd15a41
46654 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/npm-067b44f1fc55baa3ae8bcae3fffb8f57 is being purged from base /home/vagrant/Code/Laravel
46655 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/source-map-65b543b581555b7cbc998d4cbb5ca4ce
46656 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/postcss-532db73c7f46c3d273a6f1788c9d2ded
46657 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/autoprefixer-core-ea09f543af1491b32b12e264a946bfd9
46658 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/process-76e287bef23105304e95a935024541c1
46659 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/punycode-59e6a21e937b7e6eb2daf8a1e94d5be2
46660 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/gulp-autoprefixer-473ee49f941075d043c55f4917500113
46661 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/gulp-notify-21bcf4a1b6a84c326c7065f66980db87
46662 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/qs-ed5ceb759d81d84a89798029ba8c9aa7
46663 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/shallow-copy-8f42b3d7eedf41527f17b6dc751056f9
46664 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/stream-browserify-c81a0bea730120d2e7aa7583a9b3a39e
46665 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/require-dir-483c763bad2d2e09a2e1212ead683523
46666 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/gulp-phpspec-f3dd0bbfb5b0fe5e883b48a46ff93595
46667 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/stream-http-ac6539ffc94c14c8220f0be7647edf9e
46668 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/glob-stream-d18c795261b60f0cb071b0c966fe6fec
46669 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/through2-filter-0e261324adba25676b8f44b4043b4790
46670 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/unique-stream-88a479d423b66f6dbbc51e87dbe9517a
46671 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/vinyl-fs-c2714b7f3ba2fc9c28684b040eb264ff
46672 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/punycode-085ca161b081a0870f60049ca75f5d62
46673 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/punycode-8a726ccbc8c1da1057f3fc3fefd436fd
46674 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/duplexer2-e89b62e8c881efb2e4317494c5cf141c
46675 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/gulp-rev-05921f8b2bdc44c98d86f6aa20cd866d
46676 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/jsonparse-53164516d2a7a2e70775920ee3b64c5b
46677 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/JSONStream-3cc549ff59a56cd685a8e9cc239bffd1 is being purged from base /home/vagrant/Code/Laravel
46678 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/browserify-b6ee70849335cb76876dca8c8e01cd33 is being purged from base /home/vagrant/Code/Laravel
46679 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/process-9330ad6b0c3dcae4a8f0b58a39e07fea
46680 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/stream-browserify-3202b96c1d8e0c32eb8925551e019b3b
46681 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/process-a9f5ed62d366de1d8bc4d471757f7288
46682 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/win-spawn-91044225bfcd86d13040932735622b73 is being purged from base /home/vagrant/Code/Laravel
46683 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/laravel-elixir-0bfb0e5077da7247d1b8bd11a8a4dcc5
46684 verbose tar unpack /home/vagrant/.npm/async/0.9.2/package.tgz
46685 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/async-fbe6c5afa658a6db7336230ca5ea8a26
46686 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/async-fbe6c5afa658a6db7336230ca5ea8a26 is being purged
46687 verbose tar unpack /home/vagrant/.npm/array-union/0.1.0/package.tgz
46688 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/array-union-4424ee3f32fc8cd98b6cec015692457a
46689 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/array-union-4424ee3f32fc8cd98b6cec015692457a is being purged
46690 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/gulp-ruby-sass-6d679d655413474a9344cbe1432df892
46691 verbose tar unpack /home/vagrant/.npm/jsonparse/1.2.0/package.tgz
46692 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/jsonparse-705a8f9b2eccb144dddcdb0ee5a9dd61
46693 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/jsonparse-705a8f9b2eccb144dddcdb0ee5a9dd61 is being purged
46694 verbose tar unpack /home/vagrant/.npm/array-uniq/0.1.1/package.tgz
46695 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/array-uniq-3cd53fe7ac43db80b442ac32bf02cbee
46696 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/array-uniq-3cd53fe7ac43db80b442ac32bf02cbee is being purged
46697 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/JSONStream-2725add18f400bf28e6f2ef28c45b2d3
46698 verbose tar unpack /home/vagrant/.npm/through2/0.5.1/package.tgz
46699 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/through2-b0408b1eb4f2879d0a3cb0aa35690cf2
46700 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/through2-b0408b1eb4f2879d0a3cb0aa35690cf2 is being purged
46701 verbose tar unpack /home/vagrant/.npm/xtend/3.0.0/package.tgz
46702 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/xtend-a60b168ce2134f4f5ba532bc20979f67
46703 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/xtend-a60b168ce2134f4f5ba532bc20979f67 is being purged
46704 verbose tar unpack /home/vagrant/.npm/Base64/0.2.1/package.tgz
46705 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/Base64-51a230fbff4c36c04749fec310735044
46706 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/Base64-51a230fbff4c36c04749fec310735044 is being purged
46707 verbose tar unpack /home/vagrant/.npm/bufferstreams/0.0.2/package.tgz
46708 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/bufferstreams-ee4a27285d138043a316787c19183308
46709 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/bufferstreams-ee4a27285d138043a316787c19183308 is being purged
46710 verbose tar unpack /home/vagrant/.npm/defined/0.0.0/package.tgz
46711 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/defined-c393c097ea9c8eee36dfd9e80fe7f8b6
46712 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/defined-c393c097ea9c8eee36dfd9e80fe7f8b6 is being purged
46713 verbose tar unpack /home/vagrant/.npm/xtend/4.0.1/package.tgz
46714 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/xtend-071cd1ba18b35ec6ca1d2dbbb40bfc9b
46715 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/xtend-071cd1ba18b35ec6ca1d2dbbb40bfc9b is being purged
46716 verbose tar unpack /home/vagrant/.npm/commander/2.5.1/package.tgz
46717 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/commander-1e043ca8dff1fd42f9411abea16a9596
46718 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/commander-1e043ca8dff1fd42f9411abea16a9596 is being purged
46719 verbose tar unpack /home/vagrant/.npm/xtend/4.0.1/package.tgz
46720 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/xtend-b32a4b7e79e5214eb9bceb21702bf5d5
46721 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/xtend-b32a4b7e79e5214eb9bceb21702bf5d5 is being purged
46722 verbose tar unpack /home/vagrant/.npm/convert-source-map/0.3.5/package.tgz
46723 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/convert-source-map-7d2805701b7d8e1f06b9fcbe564127ed
46724 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/convert-source-map-7d2805701b7d8e1f06b9fcbe564127ed is being purged
46725 verbose tar unpack /home/vagrant/.npm/source-map/0.1.43/package.tgz
46726 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/source-map-39a666a58c1d848c654c7310be792fb7
46727 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/source-map-39a666a58c1d848c654c7310be792fb7 is being purged
46728 verbose tar unpack /home/vagrant/.npm/source-map/0.1.43/package.tgz
46729 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/source-map-c496c3d6f60a6434b65d02077bb519c0
46730 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/source-map-c496c3d6f60a6434b65d02077bb519c0 is being purged
46731 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/clean-css-a6041700ea45186156e1958813350725
46732 verbose tar unpack /home/vagrant/.npm/dargs/2.1.0/package.tgz
46733 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/dargs-60196836223ca6a958129d1b4558eb74
46734 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/dargs-60196836223ca6a958129d1b4558eb74 is being purged
46735 verbose tar unpack /home/vagrant/.npm/jsonparse/1.2.0/package.tgz
46736 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/jsonparse-b9ec63de59f9875360c0cae96d6bdee1
46737 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/jsonparse-b9ec63de59f9875360c0cae96d6bdee1 is being purged
46738 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/JSONStream-7cad4aa8c2cb0e8140838224c81635f9
46739 verbose tar unpack /home/vagrant/.npm/end-of-stream/1.0.0/package.tgz
46740 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/end-of-stream-5c27dd645111c5ba606d4c3ed4bcd32c
46741 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/end-of-stream-5c27dd645111c5ba606d4c3ed4bcd32c is being purged
46742 verbose tar unpack /home/vagrant/.npm/isobject/1.0.2/package.tgz
46743 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/isobject-2abda067cead63115830a35df385be3f
46744 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/isobject-2abda067cead63115830a35df385be3f is being purged
46745 verbose tar unpack /home/vagrant/.npm/async/1.5.0/package.tgz
46746 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/async-c4b18ea50e9ce19b1a41c6b2e89da561
46747 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/async-c4b18ea50e9ce19b1a41c6b2e89da561 is being purged
46748 verbose tar unpack /home/vagrant/.npm/array-differ/0.1.0/package.tgz
46749 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/array-differ-6ae4403d5db048b171880f73643b83d4
46750 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/array-differ-6ae4403d5db048b171880f73643b83d4 is being purged
46751 verbose tar unpack /home/vagrant/.npm/del/0.1.3/package.tgz
46752 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/del-7cf43e60bd622f087e3ae595f7ee47d0
46753 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/del-7cf43e60bd622f087e3ae595f7ee47d0 is being purged
46754 verbose tar unpack /home/vagrant/.npm/glob/4.5.3/package.tgz
46755 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/glob-35a94ad3893587afc3845d7bd1321110
46756 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/glob-35a94ad3893587afc3845d7bd1321110 is being purged
46757 verbose tar unpack /home/vagrant/.npm/duplexify/3.4.2/package.tgz
46758 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/duplexify-7f68a12802a4f707516aa0d52917bdc0
46759 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/duplexify-7f68a12802a4f707516aa0d52917bdc0 is being purged
46760 verbose tar unpack /home/vagrant/.npm/globby/0.1.1/package.tgz
46761 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/globby-503dae26324f358485801af6c7345d40
46762 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/globby-503dae26324f358485801af6c7345d40 is being purged
46763 verbose tar unpack /home/vagrant/.npm/object-assign/1.0.0/package.tgz
46764 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/object-assign-56bee8f059593cd993a8808fd76bb4e1
46765 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/object-assign-56bee8f059593cd993a8808fd76bb4e1 is being purged
46766 verbose tar unpack /home/vagrant/.npm/readable-stream/1.0.33/package.tgz
46767 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/readable-stream-762bb42536481e401030840db9875b35
46768 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/readable-stream-762bb42536481e401030840db9875b35 is being purged
46769 verbose tar unpack /home/vagrant/.npm/through2/0.6.5/package.tgz
46770 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/through2-6277985c57ba40d416cc173f339f9d9b
46771 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/through2-6277985c57ba40d416cc173f339f9d9b is being purged
46772 verbose tar unpack /home/vagrant/.npm/minimatch/0.3.0/package.tgz
46773 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/minimatch-1f25d2aeddf71058042c0689e69a552f
46774 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/minimatch-1f25d2aeddf71058042c0689e69a552f is being purged
46775 verbose tar unpack /home/vagrant/.npm/array-union/1.0.1/package.tgz
46776 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/array-union-07f35417180101ab4d887a49c2b15cd3
46777 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/array-union-07f35417180101ab4d887a49c2b15cd3 is being purged
46778 verbose tar unpack /home/vagrant/.npm/glob/3.2.11/package.tgz
46779 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/glob-4ad7d65a99de6c2eae4e92f4150887a4
46780 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/glob-4ad7d65a99de6c2eae4e92f4150887a4 is being purged
46781 verbose tar unpack /home/vagrant/.npm/gulp-load-plugins/0.7.1/package.tgz
46782 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/gulp-load-plugins-942f826ce10d49a15750472eada0b624
46783 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/gulp-load-plugins-942f826ce10d49a15750472eada0b624 is being purged
46784 verbose tar unpack /home/vagrant/.npm/findup-sync/0.1.3/package.tgz
46785 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/findup-sync-4589d1c4941aa797f3450ebd1611f537
46786 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/findup-sync-4589d1c4941aa797f3450ebd1611f537 is being purged
46787 verbose tar unpack /home/vagrant/.npm/readable-stream/1.0.33/package.tgz
46788 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/readable-stream-dbec6dbbac66d81e2a15d54d72daa2e7
46789 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/readable-stream-dbec6dbbac66d81e2a15d54d72daa2e7 is being purged
46790 verbose tar unpack /home/vagrant/.npm/minimatch/1.0.0/package.tgz
46791 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/minimatch-51ac17dce9843cbe1abe5eadba987ce9
46792 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/minimatch-51ac17dce9843cbe1abe5eadba987ce9 is being purged
46793 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/semver-40c28047455ec5c7bd99daa454ce396a
46794 verbose tar unpack /home/vagrant/.npm/node-notifier/3.4.1/package.tgz
46795 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/node-notifier-5105bfa62b28e21c1a135b82479d5b20
46796 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/node-notifier-5105bfa62b28e21c1a135b82479d5b20 is being purged
46797 verbose tar unpack /home/vagrant/.npm/xtend/3.0.0/package.tgz
46798 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/xtend-59cf315e67c44932b9d24dd2414e18e5
46799 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/xtend-59cf315e67c44932b9d24dd2414e18e5 is being purged
46800 verbose tar unpack /home/vagrant/.npm/object-assign/1.0.0/package.tgz
46801 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/object-assign-eedcc92e3d334cc952ad52b40411da0c
46802 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/object-assign-eedcc92e3d334cc952ad52b40411da0c is being purged
46803 verbose tar unpack /home/vagrant/.npm/multimatch/1.0.0/package.tgz
46804 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/multimatch-ac54d79b49dca49e346ea50e141a635f
46805 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/multimatch-ac54d79b49dca49e346ea50e141a635f is being purged
46806 verbose tar unpack /home/vagrant/.npm/glob-watcher/0.0.8/package.tgz
46807 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/glob-watcher-2195c5b1ea8f60a21f02b9297e7a9518
46808 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/glob-watcher-2195c5b1ea8f60a21f02b9297e7a9518 is being purged
46809 verbose tar unpack /home/vagrant/.npm/through2/1.1.1/package.tgz
46810 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/through2-1fafba5c97624710b937c57c0e07bd27
46811 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/through2-1fafba5c97624710b937c57c0e07bd27 is being purged
46812 verbose tar unpack /home/vagrant/.npm/glob/4.5.3/package.tgz
46813 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/glob-7ae0c48c5f497c2c410d97feff7a66d4
46814 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/glob-7ae0c48c5f497c2c410d97feff7a66d4 is being purged
46815 verbose tar unpack /home/vagrant/.npm/gulp-phpunit/0.6.3/package.tgz
46816 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/gulp-phpunit-6a76a28778d94ad895ea19ee54c72f77
46817 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/gulp-phpunit-6a76a28778d94ad895ea19ee54c72f77 is being purged
46818 verbose tar unpack /home/vagrant/.npm/readable-stream/1.0.33/package.tgz
46819 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/readable-stream-39222c3c857e9c6c2ac60325dcfaa66c
46820 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/readable-stream-39222c3c857e9c6c2ac60325dcfaa66c is being purged
46821 verbose tar unpack /home/vagrant/.npm/graceful-fs/3.0.8/package.tgz
46822 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/graceful-fs-91661ebc1128895bb21ceb26a6ad6cf5
46823 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/graceful-fs-91661ebc1128895bb21ceb26a6ad6cf5 is being purged
46824 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/strip-bom-94de7209189aaab848cee5620bc7beb6
46825 verbose tar unpack /home/vagrant/.npm/object-assign/2.1.1/package.tgz
46826 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/object-assign-ef923ebaeb1ea9c20c895a9332cb3fbd
46827 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/object-assign-ef923ebaeb1ea9c20c895a9332cb3fbd is being purged
46828 verbose tar unpack /home/vagrant/.npm/through2/0.6.5/package.tgz
46829 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/through2-010a9e9ba1bd894c9f57cba54d1a9ab6
46830 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/through2-010a9e9ba1bd894c9f57cba54d1a9ab6 is being purged
46831 verbose tar unpack /home/vagrant/.npm/vinyl/0.4.6/package.tgz
46832 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/vinyl-c450b337d4ef4abd06a3b9ecfaf589a1
46833 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/vinyl-c450b337d4ef4abd06a3b9ecfaf589a1 is being purged
46834 verbose tar unpack /home/vagrant/.npm/lodash.defaults/3.1.2/package.tgz
46835 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/lodash.defaults-fced03f0cde9b8b89e88f75cdb10146b
46836 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/lodash.defaults-fced03f0cde9b8b89e88f75cdb10146b is being purged
46837 verbose tar unpack /home/vagrant/.npm/through2/0.6.5/package.tgz
46838 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/through2-2ba77ba36339cfc5fb73de8fdcfdb7de
46839 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/through2-2ba77ba36339cfc5fb73de8fdcfdb7de is being purged
46840 verbose tar unpack /home/vagrant/.npm/gulp-shell/0.2.11/package.tgz
46841 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/gulp-shell-bc3ce78c6c291a044c6bd28997dacf4a
46842 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/gulp-shell-bc3ce78c6c291a044c6bd28997dacf4a is being purged
46843 verbose tar unpack /home/vagrant/.npm/http-browserify/1.7.0/package.tgz
46844 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/http-browserify-e1476d52afe29d56e39addaeb46bb459
46845 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/http-browserify-e1476d52afe29d56e39addaeb46bb459 is being purged
46846 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/browser-pack-0624a17990ec3cdedf9bab1259a2d402
46847 verbose tar unpack /home/vagrant/.npm/source-map/0.3.0/package.tgz
46848 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/source-map-3faa6e453a715baed32291686feaa735
46849 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/source-map-3faa6e453a715baed32291686feaa735 is being purged
46850 verbose tar unpack /home/vagrant/.npm/jsonparse/1.2.0/package.tgz
46851 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/jsonparse-4f890f57ce044af08108fc455c5e0a62
46852 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/jsonparse-4f890f57ce044af08108fc455c5e0a62 is being purged
46853 verbose tar unpack /home/vagrant/.npm/inline-source-map/0.3.1/package.tgz
46854 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/inline-source-map-8f48a888a88e7ad92047877fdc59d74f
46855 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/inline-source-map-8f48a888a88e7ad92047877fdc59d74f is being purged
46856 verbose tar unpack /home/vagrant/.npm/combine-source-map/0.3.0/package.tgz
46857 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/combine-source-map-ea3409878c13abc8af3e72b662cdcbd5
46858 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/combine-source-map-ea3409878c13abc8af3e72b662cdcbd5 is being purged
46859 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/JSONStream-88e17647ab08f49c6ac101169f0b725d
46860 verbose tar unpack /home/vagrant/.npm/source-map/0.4.4/package.tgz
46861 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/source-map-5e6e3e26540d9d1f8316e228a3f0b4f2
46862 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/source-map-5e6e3e26540d9d1f8316e228a3f0b4f2 is being purged
46863 verbose tar unpack /home/vagrant/.npm/process/0.11.2/package.tgz
46864 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/process-eced1b2826ffebf8a174b0f995de76be
46865 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/process-eced1b2826ffebf8a174b0f995de76be is being purged
46866 verbose tar unpack /home/vagrant/.npm/clone/0.2.0/package.tgz
46867 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/clone-c1c7b14866982f372564d4f3aaa0716e
46868 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/clone-c1c7b14866982f372564d4f3aaa0716e is being purged
46869 verbose tar unpack /home/vagrant/.npm/inline-source-map/0.5.0/package.tgz
46870 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/inline-source-map-e57aadcf12104f3c4b5bf237cb7c0b09
46871 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/inline-source-map-e57aadcf12104f3c4b5bf237cb7c0b09 is being purged
46872 verbose tar unpack /home/vagrant/.npm/lodash.defaults/3.1.2/package.tgz
46873 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/lodash.defaults-432454bb13b9ff277d34da2777656595
46874 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/lodash.defaults-432454bb13b9ff277d34da2777656595 is being purged
46875 verbose tar unpack /home/vagrant/.npm/combine-source-map/0.6.1/package.tgz
46876 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/combine-source-map-55fa4d614c9d01f614092e85c692e8da
46877 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/combine-source-map-55fa4d614c9d01f614092e85c692e8da is being purged
46878 verbose tar unpack /home/vagrant/.npm/install/0.1.8/package.tgz
46879 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/install-3a078995a76e57b1769f81c07b319a63
46880 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/install-3a078995a76e57b1769f81c07b319a63 is being purged
46881 verbose tar unpack /home/vagrant/.npm/isobject/2.0.0/package.tgz
46882 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/isobject-6c9fc7a3ed44a21480880f5dde663ef4
46883 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/isobject-6c9fc7a3ed44a21480880f5dde663ef4 is being purged
46884 verbose tar unpack /home/vagrant/.npm/jsonparse/0.0.5/package.tgz
46885 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/jsonparse-40e8c6bbf5f6097d3fefba8dd96f997b
46886 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/jsonparse-40e8c6bbf5f6097d3fefba8dd96f997b is being purged
46887 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/JSONStream-872a09755e16b98e10ec13a338552d17
46888 verbose tar unpack /home/vagrant/.npm/lodash.defaults/2.4.1/package.tgz
46889 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/lodash.defaults-9cd440dbaa417de26175f106c730ee7e
46890 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/lodash.defaults-9cd440dbaa417de26175f106c730ee7e is being purged
46891 verbose tar unpack /home/vagrant/.npm/md5-hex/1.1.0/package.tgz
46892 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/md5-hex-b002654948e5aa91b5cfefe6917f1017
46893 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/md5-hex-b002654948e5aa91b5cfefe6917f1017 is being purged
46894 verbose tar unpack /home/vagrant/.npm/lodash.keys/2.4.1/package.tgz
46895 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/lodash.keys-75b4321db7c63cf24787fb4899959482
46896 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/lodash.keys-75b4321db7c63cf24787fb4899959482 is being purged
46897 verbose tar unpack /home/vagrant/.npm/md5-o-matic/0.1.1/package.tgz
46898 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/md5-o-matic-91a139e190d0afb41c1a9fc58586bdb8
46899 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/md5-o-matic-91a139e190d0afb41c1a9fc58586bdb8 is being purged
46900 verbose tar unpack /home/vagrant/.npm/gulp-minify-css/0.3.13/package.tgz
46901 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/gulp-minify-css-cab87f2befd423ac6c9bdc4ffc8f6f76
46902 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/gulp-minify-css-cab87f2befd423ac6c9bdc4ffc8f6f76 is being purged
46903 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/mime-3f4fb5050e445372b6770dea2d29d314
46904 verbose tar unpack /home/vagrant/.npm/memory-cache/0.0.5/package.tgz
46905 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/memory-cache-800e61612c9307dcd90b2425794ff307
46906 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/memory-cache-800e61612c9307dcd90b2425794ff307 is being purged
46907 verbose tar unpack /home/vagrant/.npm/minimatch/0.3.0/package.tgz
46908 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/minimatch-56b8aaecad2282ed14823330af59a2e0
46909 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/minimatch-56b8aaecad2282ed14823330af59a2e0 is being purged
46910 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/JSONStream-0b920717dfcf97a01cb48a0d3c4502c2
46911 verbose tar unpack /home/vagrant/.npm/jsonparse/1.2.0/package.tgz
46912 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/jsonparse-2daa3827dd75c05a9e902ba4340ff7eb
46913 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/jsonparse-2daa3827dd75c05a9e902ba4340ff7eb is being purged
46914 verbose tar unpack /home/vagrant/.npm/multimatch/0.3.0/package.tgz
46915 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/multimatch-4ee6d6b03b4cd425390d2467e2dcc04e
46916 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/multimatch-4ee6d6b03b4cd425390d2467e2dcc04e is being purged
46917 verbose tar unpack /home/vagrant/.npm/array-differ/0.1.0/package.tgz
46918 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/array-differ-ac2510824c7ac56d36606baea3641ba8
46919 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/array-differ-ac2510824c7ac56d36606baea3641ba8 is being purged
46920 verbose tar unpack /home/vagrant/.npm/isobject/1.0.2/package.tgz
46921 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/isobject-139c46152b7929ea6ec04ca3fdd15a41
46922 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/isobject-139c46152b7929ea6ec04ca3fdd15a41 is being purged
46923 verbose tar unpack /home/vagrant/.npm/gulp-filter/1.0.2/package.tgz
46924 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/gulp-filter-68b6e34a2174d76fe9e3e254f077c327
46925 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/gulp-filter-68b6e34a2174d76fe9e3e254f077c327 is being purged
46926 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/npm-067b44f1fc55baa3ae8bcae3fffb8f57
46927 verbose tar unpack /home/vagrant/.npm/source-map/0.1.43/package.tgz
46928 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/source-map-65b543b581555b7cbc998d4cbb5ca4ce
46929 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/source-map-65b543b581555b7cbc998d4cbb5ca4ce is being purged
46930 verbose tar unpack /home/vagrant/.npm/autoprefixer-core/3.1.2/package.tgz
46931 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/autoprefixer-core-ea09f543af1491b32b12e264a946bfd9
46932 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/autoprefixer-core-ea09f543af1491b32b12e264a946bfd9 is being purged
46933 verbose tar unpack /home/vagrant/.npm/postcss/2.2.6/package.tgz
46934 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/postcss-532db73c7f46c3d273a6f1788c9d2ded
46935 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/postcss-532db73c7f46c3d273a6f1788c9d2ded is being purged
46936 verbose tar unpack /home/vagrant/.npm/punycode/1.2.4/package.tgz
46937 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/punycode-59e6a21e937b7e6eb2daf8a1e94d5be2
46938 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/punycode-59e6a21e937b7e6eb2daf8a1e94d5be2 is being purged
46939 verbose tar unpack /home/vagrant/.npm/process/0.10.1/package.tgz
46940 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/process-76e287bef23105304e95a935024541c1
46941 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/process-76e287bef23105304e95a935024541c1 is being purged
46942 verbose tar unpack /home/vagrant/.npm/gulp-autoprefixer/1.0.1/package.tgz
46943 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/gulp-autoprefixer-473ee49f941075d043c55f4917500113
46944 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/gulp-autoprefixer-473ee49f941075d043c55f4917500113 is being purged
46945 verbose tar unpack /home/vagrant/.npm/gulp-notify/1.8.0/package.tgz
46946 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/gulp-notify-21bcf4a1b6a84c326c7065f66980db87
46947 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/gulp-notify-21bcf4a1b6a84c326c7065f66980db87 is being purged
46948 verbose tar unpack /home/vagrant/.npm/qs/5.2.0/package.tgz
46949 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/qs-ed5ceb759d81d84a89798029ba8c9aa7
46950 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/qs-ed5ceb759d81d84a89798029ba8c9aa7 is being purged
46951 verbose tar unpack /home/vagrant/.npm/stream-browserify/1.0.0/package.tgz
46952 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/stream-browserify-c81a0bea730120d2e7aa7583a9b3a39e
46953 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/stream-browserify-c81a0bea730120d2e7aa7583a9b3a39e is being purged
46954 verbose tar unpack /home/vagrant/.npm/require-dir/0.1.0/package.tgz
46955 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/require-dir-483c763bad2d2e09a2e1212ead683523
46956 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/require-dir-483c763bad2d2e09a2e1212ead683523 is being purged
46957 verbose tar unpack /home/vagrant/.npm/shallow-copy/0.0.1/package.tgz
46958 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/shallow-copy-8f42b3d7eedf41527f17b6dc751056f9
46959 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/shallow-copy-8f42b3d7eedf41527f17b6dc751056f9 is being purged
46960 verbose tar unpack /home/vagrant/.npm/gulp-phpspec/0.4.2/package.tgz
46961 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/gulp-phpspec-f3dd0bbfb5b0fe5e883b48a46ff93595
46962 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/gulp-phpspec-f3dd0bbfb5b0fe5e883b48a46ff93595 is being purged
46963 verbose tar unpack /home/vagrant/.npm/glob-stream/4.1.1/package.tgz
46964 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/glob-stream-d18c795261b60f0cb071b0c966fe6fec
46965 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/glob-stream-d18c795261b60f0cb071b0c966fe6fec is being purged
46966 verbose tar unpack /home/vagrant/.npm/through2-filter/2.0.0/package.tgz
46967 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/through2-filter-0e261324adba25676b8f44b4043b4790
46968 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/through2-filter-0e261324adba25676b8f44b4043b4790 is being purged
46969 verbose tar unpack /home/vagrant/.npm/stream-http/2.0.2/package.tgz
46970 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/stream-http-ac6539ffc94c14c8220f0be7647edf9e
46971 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/stream-http-ac6539ffc94c14c8220f0be7647edf9e is being purged
46972 verbose tar unpack /home/vagrant/.npm/vinyl-fs/1.0.0/package.tgz
46973 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/vinyl-fs-c2714b7f3ba2fc9c28684b040eb264ff
46974 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/vinyl-fs-c2714b7f3ba2fc9c28684b040eb264ff is being purged
46975 verbose tar unpack /home/vagrant/.npm/punycode/1.3.2/package.tgz
46976 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/punycode-085ca161b081a0870f60049ca75f5d62
46977 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/punycode-085ca161b081a0870f60049ca75f5d62 is being purged
46978 verbose tar unpack /home/vagrant/.npm/unique-stream/2.2.0/package.tgz
46979 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/unique-stream-88a479d423b66f6dbbc51e87dbe9517a
46980 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/unique-stream-88a479d423b66f6dbbc51e87dbe9517a is being purged
46981 verbose tar unpack /home/vagrant/.npm/punycode/1.3.2/package.tgz
46982 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/punycode-8a726ccbc8c1da1057f3fc3fefd436fd
46983 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/punycode-8a726ccbc8c1da1057f3fc3fefd436fd is being purged
46984 verbose tar unpack /home/vagrant/.npm/duplexer2/0.1.3/package.tgz
46985 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/duplexer2-e89b62e8c881efb2e4317494c5cf141c
46986 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/duplexer2-e89b62e8c881efb2e4317494c5cf141c is being purged
46987 verbose tar unpack /home/vagrant/.npm/gulp-rev/2.0.1/package.tgz
46988 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/gulp-rev-05921f8b2bdc44c98d86f6aa20cd866d
46989 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/gulp-rev-05921f8b2bdc44c98d86f6aa20cd866d is being purged
46990 verbose tar unpack /home/vagrant/.npm/jsonparse/1.2.0/package.tgz
46991 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/jsonparse-53164516d2a7a2e70775920ee3b64c5b
46992 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/jsonparse-53164516d2a7a2e70775920ee3b64c5b is being purged
46993 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/JSONStream-3cc549ff59a56cd685a8e9cc239bffd1
46994 verbose tar unpack /home/vagrant/.npm/process/0.11.2/package.tgz
46995 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/process-9330ad6b0c3dcae4a8f0b58a39e07fea
46996 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/process-9330ad6b0c3dcae4a8f0b58a39e07fea is being purged
46997 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/browserify-b6ee70849335cb76876dca8c8e01cd33
46998 verbose tar unpack /home/vagrant/.npm/stream-browserify/2.0.1/package.tgz
46999 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/stream-browserify-3202b96c1d8e0c32eb8925551e019b3b
47000 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/stream-browserify-3202b96c1d8e0c32eb8925551e019b3b is being purged
47001 verbose tar unpack /home/vagrant/.npm/process/0.11.2/package.tgz
47002 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/process-a9f5ed62d366de1d8bc4d471757f7288
47003 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/process-a9f5ed62d366de1d8bc4d471757f7288 is being purged
47004 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/win-spawn-91044225bfcd86d13040932735622b73
47005 verbose tar unpack /home/vagrant/.npm/laravel-elixir/2.3.13/package.tgz
47006 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/laravel-elixir-0bfb0e5077da7247d1b8bd11a8a4dcc5
47007 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/laravel-elixir-0bfb0e5077da7247d1b8bd11a8a4dcc5 is being purged
47008 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/array-union-4424ee3f32fc8cd98b6cec015692457a
47009 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/async-fbe6c5afa658a6db7336230ca5ea8a26
47010 verbose tar unpack /home/vagrant/.npm/gulp-ruby-sass/1.4.0/package.tgz
47011 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/gulp-ruby-sass-6d679d655413474a9344cbe1432df892
47012 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/gulp-ruby-sass-6d679d655413474a9344cbe1432df892 is being purged
47013 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/jsonparse-705a8f9b2eccb144dddcdb0ee5a9dd61
47014 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/array-uniq-3cd53fe7ac43db80b442ac32bf02cbee
47015 verbose tar unpack /home/vagrant/.npm/JSONStream/1.0.6/package.tgz
47016 verbose tar unpacking to /home/vagrant/Code/Laravel/node_modules/.staging/JSONStream-2725add18f400bf28e6f2ef28c45b2d3
47017 silly gentlyRm /home/vagrant/Code/Laravel/node_modules/.staging/JSONStream-2725add18f400bf28e6f2ef28c45b2d3 is being purged
47018 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/through2-b0408b1eb4f2879d0a3cb0aa35690cf2
47019 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/xtend-a60b168ce2134f4f5ba532bc20979f67
47020 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/Base64-51a230fbff4c36c04749fec310735044
47021 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/bufferstreams-ee4a27285d138043a316787c19183308
47022 verbose gentlyRm don't care about contents; nuking /home/vagrant/Code/Laravel/node_modules/.staging/defined-c393c097ea9c8eee36dfd9e80fe7f8b6