-
Notifications
You must be signed in to change notification settings - Fork 4
/
pacman.yaml
1337 lines (1337 loc) · 31.6 KB
/
pacman.yaml
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
- name: mediawiki
artifactUrl: https://codeload.github.com/wikimedia/mediawiki/zip/374d95c464d317b2cd63fc9a98a84e5cf6e914ac
artifactLevel: 1
destination: ./dist
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- docs
- extensions/README
- skins/README
- name: RevisionSlider
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-RevisionSlider/zip/39f4bb682c9f4569d6c2559410b831b27582d4d9
artifactLevel: 1
destination: ./dist/extensions/RevisionSlider
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: Mailgun
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-Mailgun/zip/95541eec5acd4f9aaf406cc05ced9a20371ec1fc
artifactLevel: 1
destination: ./dist/extensions/Mailgun
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: SpamBlacklist
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-SpamBlacklist/zip/b75ca0387f46bad2e8424efba3f0ef24b22c7f8b
artifactLevel: 1
destination: ./dist/extensions/SpamBlacklist
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: ConfirmEdit
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-ConfirmEdit/zip/e7546270dc5b8c82200ad2ee942cdd835bd383b2
artifactLevel: 1
destination: ./dist/extensions/ConfirmEdit
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: ConfirmAccount
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-ConfirmAccount/zip/906514925983105cdfa2d95ec9c83ec05d6e8d5d
artifactLevel: 1
destination: ./dist/extensions/ConfirmAccount
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: Nuke
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-Nuke/zip/6692b3c38b98d31d6626931436ac5cc74a7f576f
artifactLevel: 1
destination: ./dist/extensions/Nuke
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: InviteSignup
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-InviteSignup/zip/41b745a0b2183ee54f5154f321c3da6068df0e5b
artifactLevel: 1
destination: ./dist/extensions/InviteSignup
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: TorBlock
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-TorBlock/zip/ac16ac6fbfa42a09a59e4b35ef03e9ad3bd2eb4e
artifactLevel: 1
destination: ./dist/extensions/TorBlock
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: Elastica
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-Elastica/zip/f6c979e8e48e2bd9f8ff0678ea38223205e7a2e6
artifactLevel: 1
destination: ./dist/extensions/Elastica
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: CirrusSearch
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-CirrusSearch/zip/09a09a5a367e85818a0441f9f13286624316c769
artifactLevel: 1
destination: ./dist/extensions/CirrusSearch
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: WikibaseCirrusSearch
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-WikibaseCirrusSearch/zip/c6a7b57631f27328d304b302dc20b5a8eb61f6a6
artifactLevel: 1
destination: ./dist/extensions/WikibaseCirrusSearch
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
patchUrls:
- https://gerrit.wikimedia.org/r/changes/mediawiki%2Fextensions%2FWikibaseCirrusSearch~908801/revisions/2/patch?download
- https://gerrit.wikimedia.org/r/changes/mediawiki%2Fextensions%2FWikibaseCirrusSearch~951473/revisions/1/patch?download
- name: WikibaseLexemeCirrusSearch
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-WikibaseLexemeCirrusSearch/zip/3b2e0311a6c875268a0dc2bfdebbf97125f0864d
artifactLevel: 1
destination: ./dist/extensions/WikibaseLexemeCirrusSearch
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
patchUrls:
- https://gerrit.wikimedia.org/r/changes/mediawiki%2Fextensions%2FWikibaseLexemeCirrusSearch~908803/revisions/1/patch?download
- name: UniversalLanguageSelector
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-UniversalLanguageSelector/zip/5f39e04ac39f3fc365a24c5fb896cc59bfa3abe5
artifactLevel: 1
destination: ./dist/extensions/UniversalLanguageSelector
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: cldr
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-cldr/zip/fcd6a488a398c77cabb3a07dda9e84b940a9b047
artifactLevel: 1
destination: ./dist/extensions/cldr
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: Gadgets
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-Gadgets/zip/b539bf948c29cb1df96a103fe27177fafe557532
artifactLevel: 1
destination: ./dist/extensions/Gadgets
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: Thanks
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-Thanks/zip/746fb1b3db3979f3f1e6241e4fdaa40503f86968
artifactLevel: 1
destination: ./dist/extensions/Thanks
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: TwoColConflict
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-TwoColConflict/zip/39a227added21fb22f97b3a1001da746349600ca
artifactLevel: 1
destination: ./dist/extensions/TwoColConflict
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: OAuth
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-OAuth/zip/7462b4db82a22249d1551a975656ab364fe7f141
artifactLevel: 1
destination: ./dist/extensions/OAuth
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: WikibaseLexeme
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-WikibaseLexeme/zip/86b18da4dbea6859cb574f6c7a69eb5640f0eaa1
artifactLevel: 1
destination: ./dist/extensions/WikibaseLexeme
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: SyntaxHighlight_GeSHi
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-SyntaxHighlight_GeSHi/zip/402c26d6013f1f87570610dcaea828451f528b93
artifactLevel: 1
destination: ./dist/extensions/SyntaxHighlight_GeSHi
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: JsonConfig
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-JsonConfig/zip/5ece7151fc91462fc56f21aacdc6c43e9d173122
artifactLevel: 1
destination: ./dist/extensions/JsonConfig
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: Kartographer
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-Kartographer/zip/86dcc8e88ab984c72c5fcb34bd27b4c3ba78cb25
artifactLevel: 1
destination: ./dist/extensions/Kartographer
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: Math
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-Math/zip/8a037f4f57030f5e44ade0a7d27fc919d20f33c6
artifactLevel: 1
destination: ./dist/extensions/Math
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: Score
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-Score/zip/046835d95c45dacd9d93c37e617bbdb4de4ee46c
artifactLevel: 1
destination: ./dist/extensions/Score
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: PageImages
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-PageImages/zip/b80ca97a9daeecd0c39d75e975d6df339a422def
artifactLevel: 1
destination: ./dist/extensions/PageImages
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: Scribunto
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-Scribunto/zip/6174f28d2fc4a670da181162814a88beec4dfd1a
artifactLevel: 1
destination: ./dist/extensions/Scribunto
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: Cite
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-Cite/zip/71b832936e5f2738e3466be681ea2ef6e0210a64
artifactLevel: 1
destination: ./dist/extensions/Cite
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: TemplateSandbox
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-TemplateSandbox/zip/67496db496f4ead899cdebb817d1093e79e5a0ad
artifactLevel: 1
destination: ./dist/extensions/TemplateSandbox
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: CodeEditor
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-CodeEditor/zip/404f1c04f01a5719a5b6767ed088c2c877ea3821
artifactLevel: 1
destination: ./dist/extensions/CodeEditor
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: CodeMirror
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-CodeMirror/zip/4ccfe6a0e97c8dd8ce7d7e1410ef6d444ca6b606
artifactLevel: 1
destination: ./dist/extensions/CodeMirror
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: WikiEditor
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-WikiEditor/zip/ae15b9b8551c30e1bd2b85eab00c903985098762
artifactLevel: 1
destination: ./dist/extensions/WikiEditor
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: SecureLinkFixer
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-SecureLinkFixer/zip/655d370bf9b74ba3056c8117c7238998af9898f0
artifactLevel: 1
destination: ./dist/extensions/SecureLinkFixer
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: Echo
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-Echo/zip/89a7c0ead512e92a988f1cae41fb3d282818a4ae
artifactLevel: 1
destination: ./dist/extensions/Echo
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: Poem
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-Poem/zip/0363845b702ae141289f284c25f1e3c173c9843c
artifactLevel: 1
destination: ./dist/extensions/Poem
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: TemplateData
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-TemplateData/zip/f99875c5794cb8fd6f1eea84fc8a9a8b0625e18f
artifactLevel: 1
destination: ./dist/extensions/TemplateData
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: AdvancedSearch
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-AdvancedSearch/zip/627f2ed5c06361104fb600af0319ff66a19bd6a7
artifactLevel: 1
destination: ./dist/extensions/AdvancedSearch
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: ParserFunctions
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-ParserFunctions/zip/1c94f1aecf10b6fc2d42c232ff72e6cfec11b3eb
artifactLevel: 1
destination: ./dist/extensions/ParserFunctions
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: MobileFrontend
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-MobileFrontend/zip/642a729ecdc0c0910eece638fefc401765f690ef
artifactLevel: 1
destination: ./dist/extensions/MobileFrontend
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: DeleteBatch
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-DeleteBatch/zip/55ffaf9e9b288b6bac0bed1f80c201b74a3ca506
artifactLevel: 1
destination: ./dist/extensions/DeleteBatch
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: MultimediaViewer
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-MultimediaViewer/zip/32794b6a456f50fde60e89c9111e6cf26e8fc534
artifactLevel: 1
destination: ./dist/extensions/MultimediaViewer
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: Auth_remoteuser
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-Auth_remoteuser/zip/be2aadcc0fa0e9c593e5731e69a4407a99b9132f
artifactLevel: 1
destination: ./dist/extensions/Auth_remoteuser
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: WikibaseManifest
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-WikibaseManifest/zip/a9acda8d9f3e671e30fdf14c00570d1b06a763ab
artifactLevel: 1
destination: ./dist/extensions/WikibaseManifest
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- infrastructure
- name: WikiHiero
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-WikiHiero/zip/7c477dab785a95e2ddda878433b2a43a8775ee6c
artifactLevel: 1
destination: ./dist/extensions/WikiHiero
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: TextExtracts
artifactUrl: https://codeload.github.com/wikimedia/mediawiki-extensions-TextExtracts/zip/ef9507a140ac328977ce8392895f684fb8f4af0a
artifactLevel: 1
destination: ./dist/extensions/TextExtracts
remove:
- tests
- .github
- .stylelintignore
- .nvmrc
- .eslintignore
- .phan
- .storybook
- .vscode
- .gitignore
- .eslintrc.json
- .gitreview
- .phpcs.xml
- .stylelintrc.json
- .rubocop.yml
- .rubocop_todo.yml
- Gruntfile.js
- Doxyfile
- name: EntitySchema