forked from oVirt/ovirt-engine-nodejs-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ovirt-engine-nodejs-modules.spec
950 lines (688 loc) · 36.7 KB
/
ovirt-engine-nodejs-modules.spec
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
Name: ovirt-engine-nodejs-modules
Version: 2.3.20
Release: 1%{?dist}
Summary: Node.js modules required to build oVirt JavaScript applications
Group: Virtualization/Management
License: Multiple
URL: http://ovirt.org
Source0: yarn-offline-cache.tar
Source1: sources.tar
BuildArch: noarch
# requirements for automation/check.sh and automation/build.sh (to be included in the build container)
BuildRequires: git
BuildRequires: jq
BuildRequires: wget
BuildRequires: rpmlint
BuildRequires: rpm-build
BuildRequires: nodejs >= 14.15.0
Requires: nodejs >= 14.15.0
%description
Node.js modules required to build oVirt JavaScript applications.
%prep
tar -xf %{SOURCE1}
%install
%define dest %{buildroot}%{_datadir}/%{name}
# Create the destination directory in build root:
install -d -m 755 %{dest}/bin
# Extract the offline cache tarball:
tar -xf %{SOURCE0} -C %{dest}
# Copy additional (non license, non doc) files to build root:
sed 's/@NVR@/%{name}-%{version}-%{release}/' setup-env.sh.in > setup-env.sh
install -m 755 setup-env.sh %{dest}
install -m 644 projects_files.tar %{dest}
# install yarn-X.Y.Z.js in bin/ as normal executable
install -m 755 `find . -maxdepth 1 -name 'yarn-*.js' -exec basename {} \;` %{dest}/bin/yarn
%files
%license LICENSE
%license LICENSES
%license LICENSE-yarn
%{_datadir}/%{name}
%changelog
* Thu Dec 15 2022 Sharon Gratch <[email protected]> - 2.3.20-1
- add preseed for https://github.com/oVirt/ovirt-web-ui/pull/1648
* Thu Dec 15 2022 Sharon Gratch <[email protected]> - 2.3.19-1
- add preseed for https://github.com/oVirt/ovirt-engine-ui-extensions/pull/87
- remove stale preseeds
* Tue Dec 13 2022 Sharon Gratch <[email protected]> - 2.3.18-1
- add preseed for https://github.com/oVirt/cockpit-ovirt/pull/35
* Wed Dec 7 2022 Sharon Gratch <[email protected]> - 2.3.17-1
- add preseed for https://github.com/oVirt/ovirt-web-ui/pull/1643
- remove stale preseeds
* Mon Dec 5 2022 Sharon Gratch <[email protected]> - 2.3.16-1
- add preseed for https://github.com/oVirt/ovirt-web-ui/pull/1641
* Wed Nov 30 2022 Scott J Dickerson <[email protected]> - 2.3.15-1
- github actions: update action versions to current
- remove stale preseeds
* Tue Nov 22 2022 Sharon Gratch <[email protected]> - 2.3.14-1
- add preseed for https://github.com/oVirt/ovirt-web-ui/pull/1638
- remove stale preseeds
* Tue Nov 22 2022 Sharon Gratch <[email protected]> - 2.3.13-1
- add preseed for https://github.com/oVirt/ovirt-engine-ui-extensions/pull/84
- remove stale preseeds
* Thu Nov 17 2022 Sharon Gratch <[email protected]> - 2.3.12-1
- add preseed for https://github.com/oVirt/ovirt-engine-ui-extensions/pull/83
- remove stale preseeds
* Mon Nov 7 2022 Sharon Gratch <[email protected]> - 2.3.11-1
- add preseed for https://github.com/oVirt/ovirt-engine-ui-extensions/pull/81
- remove stale preseeds
* Thu Sep 29 2022 Sharon Gratch <[email protected]> - 2.3.10-1
- add preseed for https://github.com/oVirt/ovirt-web-ui/pull/1633
- remove stale preseeds
* Thu Aug 4 2022 Scott J Dickerson <[email protected]> - 2.3.9-1
- add preseed for https://github.com/oVirt/cockpit-ovirt/pull/32
- remove stale preseeds
* Thu Jul 21 2022 Scott J Dickerson <[email protected]> - 2.3.8-1
- add preseed for https://github.com/oVirt/ovirt-engine-ui-extensions/pull/75
- remove stale preseeds
* Wed Jul 20 2022 Scott J Dickerson <[email protected]> - 2.3.7-1
- add preseed for https://github.com/oVirt/ovirt-engine-ui-extensions/pull/73
- remove stale preseeds
* Tue Jul 19 2022 Sharon Gratch <[email protected]> - 2.3.6-1
- add preseed for https://github.com/oVirt/ovirt-engine-ui-extensions/pull/72
- remove stale preseeds
* Tue Jul 12 2022 Scott J Dickerson <[email protected]> - 2.3.5-1
- add preseed for https://github.com/oVirt/ovirt-engine-ui-extensions/pull/70
- remove stale preseeds
* Fri Jul 8 2022 Scott J Dickerson <[email protected]> - 2.3.4-1
- add preseed for https://github.com/oVirt/ovirt-engine-ui-extensions/pull/69
* Wed Jul 6 2022 Scott J Dickerson <[email protected]> - 2.3.3-2
- Add EL9 Github Actions for CI and on demand build
* Wed Jul 6 2022 Scott J Dickerson <[email protected]> - 2.3.3-1
- add preseed for https://github.com/oVirt/ovirt-engine-ui-extensions/pull/68
- add preseed for https://github.com/oVirt/cockpit-ovirt/pull/24
- remove stale preseeds
* Thu Jun 9 2022 Scott J Dickerson <[email protected]> - 2.3.2-2
- Fix COPR srpm build to install from the centos8 stream repo instead of fedora 34
* Wed Jun 8 2022 Scott J Dickerson <[email protected]> - 2.3.2-1
- add preseed for https://github.com/oVirt/ovirt-web-ui/pull/1563
- remove stale preseeds
* Thu Jun 2 2022 Scott J Dickerson <[email protected]> - 2.3.1-1
- add preseed for https://github.com/oVirt/ovirt-web-ui/pull/1597
* Fri May 13 2022 Scott J Dickerson <[email protected]> - 2.3.0-1
- Use git to fetch package.json and yarn.lock for both projects and preseeds
- Preseed by referencing a Github PR instead of including package.json and yarn.lock files in the repo
- Drop gerrit support
- Add project LICENSE (Apache-2.0)
* Thu May 12 2022 Scott J Dickerson <[email protected]> - 2.2.3-3
- Fix COPR srpm builds to be able to use git >=2.32.2
* Thu Apr 07 2022 Sandro Bonazzola <[email protected]> - 2.2.3-2
- update setup-env usage of yarn command line for https://github.com/oVirt/cockpit-ovirt/issues/23
* Tue Mar 29 2022 Sharon Gratch <[email protected]> - 2.2.3-1
- Add pre-seed for https://github.com/oVirt/ovirt-engine-ui-extensions/pull/46
- Remove pre-seed for https://github.com/oVirt/ovirt-engine-ui-extensions/pull/27
* Tue Mar 29 2022 Sharon Gratch <[email protected]> - 2.2.2-1
- Update pre-seed for https://github.com/oVirt/ovirt-engine-ui-extensions/pull/27
* Tue Mar 29 2022 Sharon Gratch <[email protected]> - 2.2.1-1
- Add pre-seed for https://github.com/oVirt/ovirt-engine-ui-extensions/pull/27
- Fix check.sh file by adding verification for ovirt-engine-ui-extensios pre-seed's PR status
* Mon Feb 7 2022 Scott J Dickerson <[email protected]> - 2.2.0-5
- Documentation updates
* Thu Feb 3 2022 Scott J Dickerson <[email protected]> - 2.2.0-4
- Use quay.io/ovirt/buildcontainer:el8stream for github action builds
- Add a manual run github action to create RPMs for a PR
* Thu Feb 3 2022 Scott J Dickerson <[email protected]> - 2.2.0-3
- Add BuildRequires for running automation/*.sh scripts in ovirt's build container
* Wed Feb 2 2022 Scott J Dickerson <[email protected]> - 2.2.0-2
- Remove deprecated std-ci/jenkins automations
* Wed Feb 2 2022 Scott J Dickerson <[email protected]> - 2.2.0-1
- Migrate repo off gerrit to github
- Update check action to consider all commits in a PR when verifying a change
* Wed Jan 26 2022 Scott J Dickerson <[email protected]> - 2.1.6-1
Add pre-seed for https://github.com/oVirt/ovirt-web-ui/pull/1557
* Mon Jan 24 2022 Scott J Dickerson <[email protected]> - 2.1.5-1
- Move all project fetch URLs to github
- Remove project 'ovirt-engine-api-explorer' since it has been deprecated for
over a year
* Mon Dec 13 2021 Scott J Dickerson <[email protected]> - 2.1.4-1
Enable GitHub Actions for CI
Remove stale pre-seeds
* Mon Nov 29 2021 Radoslaw Szwajkowski <[email protected]> - 2.1.3-1
Update pre-seed for https://github.com/oVirt/ovirt-web-ui/pull/1525
* Mon Nov 22 2021 Scott J Dickerson <[email protected]> - 2.1.2-1
Add pre-seed for https://github.com/oVirt/ovirt-web-ui/pull/1525
* Fri Nov 12 2021 Sandro Bonazzola <[email protected]> - 2.1.1-1
- Enable COPR builds
* Fri Nov 12 2021 Scott J Dickerson <[email protected]> - 2.1.0-1
Require nodejs 14 (some build packages won't run on nodejs<12)
Upgrade to yarn 1.2.11
* Sun Oct 10 2021 Sharon Gratch <[email protected]> - 2.0.60-1
Add pre-seed for changes:
- https://github.com/oVirt/ovirt-web-ui/pull/1526
* Mon Sep 13 2021 Sharon Gratch <[email protected]> - 2.0.59-1
- Automation: push master to 4.4 - update STDCI master branch build for ovirt-4.4
- Remove pre-seeds for merged/closed changes:
- https://github.com/oVirt/ovirt-web-ui/pull/1497
* Tue Aug 10 2021 Sharon Gratch <[email protected]> - 2.0.58-1
Add pre-seed for changes:
- https://github.com/oVirt/ovirt-web-ui/pull/1497
Remove pre-seeds for merged/closed changes:
- https://github.com/oVirt/ovirt-web-ui/pull/1490
- https://github.com/oVirt/ovirt-web-ui/pull/1479
- https://gerrit.ovirt.org/c/ovirt-engine-ui-extensions/+/115819
- https://gerrit.ovirt.org/c/ovirt-engine-ui-extensions/+/115519
- https://gerrit.ovirt.org/c/ovirt-engine-ui-extensions/+/115816
* Thu Jul 22 2021 Scott J Dickerson <[email protected]> - 2.0.57-1
Add pre-seed for changes:
- https://github.com/oVirt/ovirt-web-ui/pull/1490
* Wed Jul 21 2021 Scott J Dickerson <[email protected]> - 2.0.56-1
Add pre-seed for changes:
- https://gerrit.ovirt.org/c/ovirt-engine-ui-extensions/+/115819
* Wed Jul 21 2021 Scott J Dickerson <[email protected]> - 2.0.55-1
Add pre-seed for changes:
- https://gerrit.ovirt.org/c/ovirt-engine-ui-extensions/+/115519
- https://gerrit.ovirt.org/c/ovirt-engine-ui-extensions/+/115816
- https://github.com/oVirt/ovirt-web-ui/pull/1479
Remove pre-seeds for merged/closed changes:
- https://github.com/oVirt/ovirt-web-ui/pull/1460
* Thu Jun 24 2021 Scott J Dickerson <[email protected]> - 2.0.54-1
Add pre-seed for change:
- https://github.com/oVirt/ovirt-web-ui/pull/1460
Remove pre-seeds for merged/closed changes:
- https://gerrit.ovirt.org/c/ovirt-engine-ui-extensions/+/115328
* Mon Jun 21 2021 Sharon Gratch <[email protected]> - 2.0.53-1
Fix the pre-seed for change:
- https://gerrit.ovirt.org/115328
* Mon Jun 21 2021 Sharon Gratch <[email protected]> - 2.0.52-1
Add the pre-seed for change:
- https://gerrit.ovirt.org/115328
Remove pre-seeds for merged/closed changes:
- https://github.com/oVirt/ovirt-web-ui/pull/1457
* Sun Jun 20 2021 Sharon Gratch <[email protected]> - 2.0.51-1
Add the pre-seed for change:
- https://github.com/oVirt/ovirt-web-ui/pull/1457
Remove pre-seeds for merged/closed changes:
- https://github.com/oVirt/ovirt-web-ui/pull/1359
* Thu Jun 10 2021 Scott J Dickerson <[email protected]> - 2.0.50-1
Update the pre-seed for change:
- https://github.com/oVirt/ovirt-web-ui/pull/1359
* Fri Jun 4 2021 Scott J Dickerson <[email protected]> - 2.0.49-1
Add pre-seed for change:
- https://github.com/oVirt/ovirt-web-ui/pull/1359
Remove pre-seeds for merged/closed changes:
- https://github.com/oVirt/ovirt-web-ui/pull/1429
* Thu May 27 2021 Radoslaw Szwajkowski <[email protected]> - 2.0.48-1
Second update to pre-seed for change:
- https://github.com/oVirt/ovirt-web-ui/pull/1429
* Fri May 14 2021 Radoslaw Szwajkowski <[email protected]> - 2.0.47-1
Correct pre-seed for change:
- https://github.com/oVirt/ovirt-web-ui/pull/1429
* Thu May 13 2021 Radoslaw Szwajkowski <[email protected]> - 2.0.46-1
Add pre-seed for change:
- https://github.com/oVirt/ovirt-web-ui/pull/1429
Remove pre-seed for merged changes:
- https://gerrit.ovirt.org/c/cockpit-ovirt/+/114580
* Fri Apr 30 2021 Scott J Dickerson <[email protected]> - 2.0.45-1
Add pre-seed for change:
- https://gerrit.ovirt.org/c/cockpit-ovirt/+/114580
Remove pre-seeds for merged/closed changes:
- https://gerrit.ovirt.org/c/cockpit-ovirt/+/114255
- https://github.com/oVirt/ovirt-web-ui/pull/1413
* Fri Apr 23 2021 Sharon Gratch <[email protected]> - 2.0.44-1
Add pre-seed for change:
- https://github.com/oVirt/ovirt-web-ui/pull/1413
* Tue Apr 13 2021 Sandro Bonazzola <[email protected]> - 2.0.43-1
Add pre-seed for change:
- https://gerrit.ovirt.org/#/c/cockpit-ovirt/+/114255/
Remove pre-seed for merged changes:
- https://github.com/oVirt/ovirt-web-ui/pull/1384
* Fri Apr 9 2021 Radoslaw Szwajkowski <[email protected]> - 2.0.42-1
Add pre-seed for change:
- https://github.com/oVirt/ovirt-web-ui/pull/1384
Remove pre-seed for merged changes:
- https://github.com/oVirt/ovirt-web-ui/pull/1383
* Mon Mar 22 2021 Radoslaw Szwajkowski <[email protected]> - 2.0.41-1
Add pre-seed for change:
- https://github.com/oVirt/ovirt-web-ui/pull/1383
Remove pre-seed for merged changes:
- https://github.com/oVirt/ovirt-web-ui/pull/1367
* Wed Feb 10 2021 Sharon Gratch <[email protected]> - 2.0.40-1
Add pre-seed for change:
- https://github.com/oVirt/ovirt-web-ui/pull/1367
Remove pre-seed for merged changes:
- https://gerrit.ovirt.org/112743
* Mon Dec 28 2020 Aviv Turgeman <[email protected]> - 2.0.39-1
Add pre-seed for change:
- https://gerrit.ovirt.org/c/cockpit-ovirt/+/112743
Remove pre-seed for merged changes:
- https://gerrit.ovirt.org/112331
* Wed Dec 16 2020 Scott J Dickerson <[email protected]> - 2.0.38-1
Remove fc30 platform target
Remove unnecessary projects from projects.list
* Mon Nov 23 2020 Scott J Dickerson <[email protected]> - 2.0.37-1
Add pre-seed for change:
- https://gerrit.ovirt.org/112330 (I15808fdf37425292539e801e7553c4cc500408d4)
Remove pre-seed for merged change:
- https://github.com/oVirt/ovirt-web-ui/pull/1306
* Tue Oct 13 2020 Sharon Gratch <[email protected]> - 2.0.36-1
Add pre-seed for change:
- https://github.com/oVirt/ovirt-web-ui/pull/1306
Remove pre-seeds for merged changes:
- https://gerrit.ovirt.org/111672
* Fri Oct 9 2020 Scott J Dickerson <[email protected]> - 2.0.35-1
Add pre-seed for change:
- https://gerrit.ovirt.org/111671
Remove pre-seeds for merged changes:
- https://github.com/oVirt/ovirt-web-ui/pull/1282
* Mon Aug 24 2020 Scott J Dickerson <[email protected]> - 2.0.34-1
Add pre-seed for change:
- https://github.com/oVirt/ovirt-web-ui/pull/1282
Remove pre-seeds for merged changes:
- https://github.com/oVirt/ovirt-web-ui/pull/1260
- https://gerrit.ovirt.org/110206
- https://gerrit.ovirt.org/110643
* Wed Aug 5 2020 Aviv Turgeman <[email protected]> - 2.0.33-1
- add pre-seed for https://gerrit.ovirt.org/#/c/110643/
* Mon Aug 3 2020 Scott J Dickerson <[email protected]> - 2.0.32-1
- add pre-seed for https://github.com/oVirt/ovirt-web-ui/pull/1260
* Mon Jul 13 2020 Radoslaw Szwajkowski <[email protected]> - 2.0.31-1
- add ovirt-engine-ui-extensions pre-seed for https://gerrit.ovirt.org/110206
- remove ovirt-engine-ui-extensions pre-seed for https://gerrit.ovirt.org/110054
* Thu Jul 2 2020 Sharon Gratch <[email protected]> - 2.0.30-1
- add ovirt-engine-ui-extensions pre-seed for https://gerrit.ovirt.org/110054
* Sat Jun 27 2020 Scott J Dickerson <[email protected]> - 2.0.29-1
- add pre-seed for https://github.com/oVirt/ovirt-web-ui/pull/1241
- remove pre-seed ovirt-engine-ui-extensions Ib4f852d25bc10282e5696834573fb51c276ab147
* Fri May 1 2020 Scott J Dickerson <[email protected]> - 2.0.28-1
- add pre-seed https://gerrit.ovirt.org/108751 (Ib4f852d25bc10282e5696834573fb51c276ab147)
- remove pre-seed ovirt-web-ui_1194
- remove pre-seed cockpit-ovirt_Ieb69fc019e462110a23f3cff73b79c94b98d8fc2
* Tue Apr 28 2020 Sharon Gratch <[email protected]> - 2.0.27-1
- add pre-seed: https://github.com/oVirt/ovirt-web-ui/pull/1194
* Sun Apr 19 2020 Aviv Turgeman <[email protected]> - 2.0.26-1
- add pre-seed for https://gerrit.ovirt.org/#/c/108464/
* Sun Apr 19 2020 Aviv Turgeman <[email protected]> - 2.0.25-1
- add pre-seed for https://gerrit.ovirt.org/#/c/108464/
* Sun Apr 5 2020 Scott J Dickerson <[email protected]> - 2.0.24-1
- add pre-seed https://gerrit.ovirt.org/108177 (Ief768455fa49ba97e4cdcbb250b3a6014b36829b)
- remove pre-seed Ie7362f3aac2b3099c509aedc9d327196f7f1b06e
* Thu Mar 26 2020 Sharon Gratch <[email protected]> - 2.0.23-1
- add pre-seed https://gerrit.ovirt.org/107838 (Ie7362f3aac2b3099c509aedc9d327196f7f1b06e)
* Thu Mar 26 2020 Michal Skrivanek <[email protected]> - 2.0.22-1
- ignore yarn check errors
- remove pre-seed Ib6c979171137579c5edd0eb344ecfa03b161a8ea
- remove pre-seed ovirt-web-ui_1173
* Fri Mar 20 2020 Scott J Dickerson <[email protected]> - 2.0.21-1
- add pre-seed: https://github.com/oVirt/ovirt-web-ui/pull/1173
* Fri Mar 20 2020 Scott J Dickerson <[email protected]> - 2.0.20-1
- add pre-seed https://gerrit.ovirt.org/#/c/107759/ (Ib6c979171137579c5edd0eb344ecfa03b161a8ea)
- remove pre-seed https://gerrit.ovirt.org/#/c/107381/ (Ia08ff343c76cc3f5253a5bb630094c2cb972b404)
* Fri Mar 6 2020 Scott J Dickerson <[email protected]> - 2.0.19-1
- configure yarn network requests to be more forgiving
- refactor the build script so yarn installs for projects and
pre-seeds are in their own scripts
* Thu Mar 5 2020 Sharon Gratch <[email protected]> - 2.0.18-2
- drop fc29 and el7 platforms
* Tue Mar 3 2020 Scott J Dickerson <[email protected]> - 2.0.18-1
- add pre-seed for https://gerrit.ovirt.org/107381
Ia08ff343c76cc3f5253a5bb630094c2cb972b404
* Tue Mar 3 2020 Scott J Dickerson <[email protected]> - 2.0.17-1
- remove all pre-seeds
* Sat Feb 29 2020 Scott J Dickerson <[email protected]> - 2.0.16-1
- add pre-seed for https://gerrit.ovirt.org/#/c/101916/
* Sun Jan 19 2020 Gal Zaidman <[email protected]> - 2.0.15-1
- add pre-seed for https://gerrit.ovirt.org/#/c/105504/
* Mon Jan 13 2020 Gal Zaidman <[email protected]> - 2.0.14-1
- add pre-seed for https://gerrit.ovirt.org/#/c/105504/
* Thu Jan 9 2020 Michal Skrivanek <[email protected]> - 2.0.13-2
- add pre-seed for https://github.com/oVirt/ovirt-web-ui/pull/1091
* Tue Dec 10 2019 Scott J Dickerson <[email protected]> - 2.0.13-1
- add ovirt-engine-ui-extensions pre-seed for https://gerrit.ovirt.org/103449
* Thu Dec 5 2019 Scott J Dickerson <[email protected]> - 2.0.12-1
- update pre-seed for https://gerrit.ovirt.org/104924/
* Tue Dec 3 2019 Lucia Jelinkova <[email protected]> - 2.0.11-6
- add ovirt-engine-ui-extensions pre-seed for https://gerrit.ovirt.org/#/c/104924/
* Mon Nov 4 2019 Scott J Dickerson <[email protected]> - 2.0.11-5
- update ovirt-engine-ui-extensions pre-seed for https://gerrit.ovirt.org/104415/
* Mon Nov 4 2019 Charles Thao <[email protected]> 2.0.11-4
- add ovirt-engine-ui-extensions pre-seed for https://gerrit.ovirt.org/104415/
- remove ovirt-web-ui pre-seed for https://github.com/oVirt/ovirt-web-ui/pull/1117
* Fri Oct 11 2019 Sandro Bonazzola <[email protected]>- 2.0.11-3
- fix all distro automation repos
* Fri Oct 11 2019 Scott J Dickerson <[email protected]> - 2.0.11-2
- removed pre-seed ovirt-engine-ui-extensions_I517ccf09d7f56a96e1285d34d319c01e1bd061f2
* Fri Oct 4 2019 Michal Skrivanek <[email protected]> - 2.0.11-1
- fix projects_files.tar permissions not to be executable
- echo a version-release when sourcing the environment file
* Thu Oct 3 2019 Michal Skrivanek <[email protected]> - 2.0.10-4
- fix yarn stats logging
- simplify CI deps
* Thu Oct 3 2019 Michal Skrivanek <[email protected]> - 2.0.10-3
- fix spec condition for nodejs vs ovirt-engine-nodejs
* Wed Oct 2 2019 Michal Skrivanek <[email protected]> - 2.0.10-2
- add el8, fc30 targets
- use standard nodejs from fedore & el8
* Tue Oct 1 2019 Scott J Dickerson <[email protected]> - 2.0.10-1
- add reporting on yarn network fetches
- use symlinks to pre-fill the offline cache
- remove cached packages no longer in use
- update LICENSES generation to run fast
* Tue Sep 24 2019 Scott J Dickerson <[email protected]> - 2.0.9-1
- update pre-seed for ovirt-web-ui
https://github.com/oVirt/ovirt-web-ui/pull/1091
* Fri Sep 20 2019 Dafna Ron <[email protected]> - 2.0.8-2
- removed 4.2 cq job
* Thu Sep 19 2019 Bohdan Iakymets <[email protected]> - 2.0.8-1
- updated pre-seed for ovirt-web-ui
Updated: https://github.com/oVirt/ovirt-web-ui/pull/1117
Removed: https://gerrit.ovirt.org/#/c/102989/
* Mon Sep 16 2019 Scott J Dickerson <[email protected]> - 2.0.7-1
- pre-seed for ovirt-engine-ui-extensions
Add: https://gerrit.ovirt.org/102850
* Tue Sep 10 2019 Ondra Machacek <[email protected]> - 2.0.6-1
- pre-seed for ovirt-engine-api-explorer
* Tue Sep 10 2019 Scott J Dickerson <[email protected]> - 2.0.5-1
- install yarn-*.js as an executable to avoid using an alias/function in setup-env.sh
* Tue Sep 10 2019 Bohdan Iakymets <[email protected]> - 2.0.4-1
- update pre-seeds for ovirt-web-ui
Add: https://github.com/oVirt/ovirt-web-ui/pull/1117
Remove: ovirt-web-ui_1048
* Tue Sep 03 2019 Bohdan Iakymets <[email protected]> - 2.0.3-1
- pre-seed for ovirt-web-ui
PR: https://github.com/oVirt/ovirt-web-ui/pull/1048
* Tue Sep 03 2019 Michal Skrivanek <[email protected]> - 2.0.2-1
- fix yarn location lookup
* Tue Sep 03 2019 Michal Skrivanek <[email protected]> - 2.0.1-1
- pre-seed for https://gerrit.ovirt.org/#/c/103041/
* Fri Aug 30 2019 Michal Skrivanek <[email protected]> - 2.0.0-1
- pull in latest yarn and deliver it through this package
* Fri Aug 30 2019 Michal Skrivanek <[email protected]> - 1.9.5-2
- Removed old pre-seed for cockpit-ovirt
* Fri Aug 30 2019 Michal Skrivanek <[email protected]> - 1.9.5-1
- Change pre-seed dirname structure to project_changeid or project_pr#
- Add checking for PR/ChangeId validity of pre-seeds
* Fri Aug 30 2019 Michal Skrivanek <[email protected]> - 1.9.4-5
- Removed old (all) pre-seeds for ovirt-cockpit
- Remove obsolete branches from projects.list
- Add back ovirt-engine-api-explorer, it's still alive
* Wed Aug 28 2019 Scott J Dickerson <[email protected]> - 1.9.4-4
- Removed old pre-seeds for ovirt-engine-ui-extensions
- Removed old pre-seeds for ovirt-web-ui
- Renamed ovirt-web-ui pre-seed folders to reflect the related PR
* Wed Aug 28 2019 Scott J Dickerson <[email protected]> - 1.9.4-3
- fix location of nodejs-modules repo in build.repos of stdci v2
* Tue Aug 27 2019 Michal Skrivanek <[email protected]> - 1.9.4-2
- move automation to stdci v2
* Fri Aug 23 2019 Charles Thao <[email protected]> - 1.9.4-1
- pre-seed for https://gerrit.ovirt.org/#/c/102081/
* Fri Aug 23 2019 Ido Rosenzwig <[email protected]> - 1.9.3-1
- pre-seed for cockpit-ovirt
* Fri Aug 23 2019 Scott J Dickerson <[email protected]> - 1.9.2-1
- Updated project.list for currently valid projects/branches
* Thu Aug 22 2019 Scott J Dickerson <[email protected]> - 1.9.1-2
- update pre-seed for https://gerrit.ovirt.org/#/c/102727/
* Wed Aug 21 2019 Charles Thao <[email protected]> - 1.9.1-1
- pre-seed for ovirt-engine-ui-extensions and ovirt-web-ui
patch for ui-extensions: https://gerrit.ovirt.org/#/c/102727/
pr for web-ui: https://github.com/oVirt/ovirt-web-ui/pull/1097
* Wed Aug 21 2019 Michal Skrivanek <[email protected]> - 1.9.0-2
- remove obsolete scripts
* Tue Aug 20 2019 Scott J Dickerson <[email protected]> - 1.9.0-1
Use the previous build of this package to prefill the offline cache
to reduce the number of http requests needed to just things that are
new to the nodejs-modules.
* Tue Aug 20 2019 Scott J Dickerson <[email protected]> - 1.8.22-1
- pre-seed for ovirt-web-ui
pr: https://github.com/oVirt/ovirt-web-ui/pull/1093
* Thu Aug 15 2019 Bohdan Iakymets <[email protected]> - 1.8.21-1
- pre-seed for ovirt-web-ui
* Mon Aug 12 2019 Ido Rosenzwig <[email protected]> - 1.8.20-1
- pre-seed for cockpit-ovirt
* Wed Aug 7 2019 Scott J Dickerson <[email protected]> - 1.8.19-1
- pre-seed for ovirt-engine-ui-extensions
patch: https://gerrit.ovirt.org/#/c/97032/
* Wed Aug 7 2019 Scott J Dickerson <[email protected]> - 1.8.18-1
- pre-seed for ovirt-engine-ui-extensions
patch: https://gerrit.ovirt.org/#/c/97032/
* Mon Jul 29 2019 Charles Thao <[email protected]> - 1.8.17-1
- pre-seed for ovirt-engine-ui-extensions
* Mon Jul 22 2019 Charles Thao <[email protected]> - 1.8.16-1
- pre-seed for ovirt-web-ui
* Wed Jul 17 2019 Scott J Dickerson <[email protected]> - 1.8.15-1
- pre-seed for ovirt-web-ui
* Sun Jul 14 2019 Ido Rosenzwig <[email protected]> - 1.8.14-1
- pre-seed for cockpit-ovirt
* Tue Jul 2 2019 Bohdan Iakymets <[email protected]> - 1.8.13-1
- pre-seed for ovirt-web-ui
* Tue Jun 25 2019 Scott J Dickerson <[email protected]> - 1.8.12-1
- remove pre-seeds from 2018
- pre-seed for:
- ovirt-web-ui
- ovirt-engine-ui-extensions
* Mon Jun 24 2019 Parth Dhanjal <[email protected]> - 1.8.11-1
- pre-seed for cockpit-ovirt
* Mon Jun 17 2019 Ido Rosenzwig <[email protected]> - 1.8.10-1
- pre-seed for cockpit-ovirt
* Wed Apr 24 2019 Ondra Machacek <[email protected]> - 1.8.9-1
- pre-seed for ovirt-engine-api-explorer
* Mon Mar 4 2019 Scott J Dickerson <[email protected]> - 1.8.8-1
- pre-seed for ovirt-web-ui
* Wed Feb 27 2019 Bohdan Iakymets <[email protected]> - 1.8.7-1
- pre-seed for ovirt-web-ui
* Fri Feb 1 2019 Greg Sheremeta <[email protected]> - 1.8.6-1
- pre-seed for ovirt-web-ui
* Fri Feb 1 2019 Scott J Dickerson <[email protected]> - 1.8.5-1
- pre-seed for ovirt-web-ui
* Fri Jan 18 2019 Parth Dhanjal <[email protected]> - 1.8.4-1
- pre-seed cockpit-ovirt
* Thu Jan 17 2019 Bohdan Iakymets <[email protected]> - 1.8.3-1
- pre-seed ovirt-engine-api-explorer
* Tue Dec 18 2018 Scott J Dickerson <[email protected]> - 1.8.2-1
- bump for ovirt-web-ui
* Sun Nov 25 2018 Greg Sheremeta <[email protected]> - 1.8.1-1
- update ovirt-web-ui
* Wed Oct 10 2018 Greg Sheremeta <[email protected]> - 1.8.0-1
- add ovirt-web-ui-1.4 stable branch to projects.list
* Wed Oct 10 2018 Greg Sheremeta <[email protected]> - 1.7.4-1
- pre-seed ovirt-web-ui
* Tue Sep 4 2018 Greg Sheremeta <[email protected]> - 1.7.3-1
- pre-seed ovirt-web-ui
* Wed Jul 18 2018 Phillip Bailey <[email protected]> - 1.7.2-1
- pre-seed cockpit-ovirt
* Fri Jun 29 2018 Scott Dickerson <[email protected]> - 1.7.1-1
- pre-seed ovirt-engine-ui-extensions
* Fri Jun 29 2018 Vojtech Szocs <[email protected]> - 1.7.0-1
- add ovirt-engine-ui-extensions to projects.list
* Thu Jun 21 2018 Greg Sheremeta <[email protected]> - 1.6.0-1
- add switch to disable 'yarn check'
- pre-seed ovirt-js-dependencies
* Wed Jun 13 2018 Greg Sheremeta <[email protected]> - 1.5.10-1
- pre-seed ovirt-engine-api-explorer
* Wed Jun 13 2018 Greg Sheremeta <[email protected]> - 1.5.9-1
- pre-seed ovirt-js-dependencies
* Fri Jun 8 2018 Greg Sheremeta <[email protected]> - 1.5.8-1
- pre-seed ovirt-engine-api-explorer dependencies
* Fri Jun 8 2018 Greg Sheremeta <[email protected]> - 1.5.7-1
- pre-seed ovirt-engine-dashboard dependencies
* Thu Jun 7 2018 Greg Sheremeta <[email protected]> - 1.5.6-3
- fix case where package.json can't be found on license parse
* Thu Jun 7 2018 Sandro Bonazzola <[email protected]> - 1.5.6-2
- Rebuilt for Fedora Mass Rebuild
* Thu May 3 2018 Vojtech Szocs <[email protected]> - 1.5.6-1
- pre-seed ovirt-engine-dashboard dependencies
* Fri Apr 20 2018 Vojtech Szocs <[email protected]> - 1.5.5-1
- pre-seed ovirt-engine-dashboard dependencies
* Fri Apr 6 2018 Marek Libra <[email protected]> - 1.5.4-1
- dependencies of ovirt-web-ui changed
* Thu Mar 22 2018 Marek Libra <[email protected]> - 1.5.3-1
- dependencies of ovirt-web-ui upgraded
* Thu Mar 22 2018 Marek Libra <[email protected]> - 1.5.2-1
- dependencies of ovirt-web-ui updated (added patternfly-react)
* Fri Mar 16 2018 Greg Sheremeta <[email protected]> - 1.5.1-1
- pre-seed cockpit-ovirt changes (add moment)
* Fri Mar 16 2018 Greg Sheremeta <[email protected]> - 1.5.0-1
- add cockpit-ovirt 4.2 branch to projects.list
* Fri Mar 9 2018 Scott J Dickerson <[email protected]> - 1.4.2-1
- pre-seed ovirt-engine-dashboard dependencies (for karma-webpack)
* Thu Feb 15 2018 Scott J Dickerson <[email protected]> - 1.4.1-1
- pre-seed ovirt-engine-dashboard dependencies
* Wed Feb 14 2018 Greg Sheremeta <[email protected]> - 1.4.0-1
- add ovirt-engine-dashboard-1.2 to projects.list
* Sun Feb 04 2018 Scott J Dickerson <[email protected]> - 1.3.2-1
- pre-seed ovirt-engine-dashboard dependencies
* Thu Jan 18 2018 Scott J Dickerson <[email protected]> - 1.3.1-1
- pre-seed ovirt-engine-dashboard dependencies
* Sun Jan 14 2018 Greg Sheremeta <[email protected]> - 1.3.0-1
- add pre-seed folder to fix chicken-and-egg problem
* Mon Nov 27 2017 Greg Sheremeta <[email protected]> - 1.2.2-1
- updated ovirt-engine-dashboard dependencies
* Mon Nov 27 2017 Greg Sheremeta <[email protected]> - 1.2.1-1
- updated ovirt-engine-dashboard dependencies
* Wed Sep 27 2017 Juan Hernandez <[email protected]> - 1.2.0-1
- Add ovirt-engine-api-explorer to projects.list.
* Tue Aug 15 2017 Marek Libra <[email protected]> - 1.1.0-1
- cockpit-ovirt/vdsm (master) subproject removed from projectlist
- all runtime deps of ovirt-web-ui updated to their latests
* Mon Aug 14 2017 Marek Libra <[email protected]> - 1.0.19-1
- dependencies of ovirt-web-ui updated
* Tue Aug 1 2017 Greg Sheremeta <[email protected]> - 1.0.18-1
- updated ovirt-js-dependencies
* Tue Jun 20 2017 Marek Libra <[email protected]> - 1.0.17-1
- ovirt-web-ui package.json updated
* Thu Jun 15 2017 Marek Libra <[email protected]> - 1.0.16-1
- Bump the version to pull ovirt-ui-components 0.2.4
* Mon Jun 5 2017 Greg Sheremeta <[email protected]> - 1.0.15-1
- add cockpit-ovirt 4.1 branch to projects.list
* Sat Jun 3 2017 Greg Sheremeta <[email protected]> - 1.0.14-1
- bump version for new ovirt-js-dependencies
* Fri Jun 2 2017 Marek Libra <[email protected]> - 1.0.13-1
- Bump the version to grab react-router for ovirt-web-ui
* Tue May 30 2017 Ryan Barry <[email protected]> - 1.0.12-1
- Bump the version to grab new lockfiles for cockpit-ovirt
* Tue May 16 2017 Greg Sheremeta <[email protected]> - 1.0.11-2
- don't hardcode 'v1' in cache path
* Mon May 15 2017 Marek Libra - 1.0.11-1
- dependencies in ovirt-web-ui updated to latest versions (i.e. React)
* Mon May 15 2017 Greg Sheremeta <[email protected]> - 1.0.10-4
- remove temporary lockfile editing from setup-env.sh
- add 'v1' to yarn cache patch when building licenses file
* Mon May 15 2017 Greg Sheremeta <[email protected]> - 1.0.10-3
- force CI to use latest builds
* Fri May 12 2017 Vojtech Szocs <[email protected]> - 1.0.10-2
- Expose bundled JavaScript dependency listing as:
exported-artifacts/bundled_dependencies.list
- Expose the "projects_files" directory (containing all project
specific files downloaded during the RPM build) as:
exported-artifacts/projects_files.tar
- In the setup script, run `yarn check` after `yarn install` to
ensure consistency between package.json vs. yarn.lock files.
* Fri May 12 2017 Marek Libra - 1.0.10-1
- ovirt-ui-components 0.2.2 released as referenced from ovirt-web-ui
* Wed Apr 19 2017 Marek Libra - 1.0.9-1
- add prop-types as referenced from ovirt-web-ui
* Tue Apr 18 2017 Vojtech Szocs <[email protected]> - 1.0.8-1
- bump to pick up jquery-ui-dist coming from ovirt-js-dependencies
* Tue Mar 28 2017 Marek Libra - 1.0.7-1
- ovirt-ui-components 0.2.1 released as referenced from ovirt-web-ui
* Mon Mar 20 2017 Vojtech Szocs <[email protected]> - 1.0.6-2
- Make sure the RPM version and/or release check is performed
in both build.sh and check.sh scripts.
* Mon Mar 20 2017 Marek Libra - 1.0.6-1
- ovirt-ui-components 0.2.0 released as referenced from ovirt-web-ui
* Thu Mar 16 2017 Marek Libra - 1.0.5-1
- add new project cockpit-machines-ovirt-provider
* Thu Mar 2 2017 Greg Sheremeta <[email protected]> - 1.0.4-7
- add fc24 repos.
* Tue Feb 21 2017 Greg Sheremeta <[email protected]> - 1.0.4-6
- switch to noarch. Remove BuildRequires.
* Tue Feb 21 2017 Greg Sheremeta <[email protected]> - 1.0.4-5
- fixed removal of 'http' urls from yarn.lock files. Only 'https'
had been working.
* Tue Feb 21 2017 Ryan Barry <[email protected]> - 1.0.4-4
- bumping version to pull in new cockpit-ovirt dependencies
* Fri Feb 17 2017 Marek Libra <[email protected]> - 1.0.4-3
- bumping version to pull in new ovirt-web-ui dependencies
* Wed Feb 15 2017 Ryan Barry <[email protected]> - 1.0.4-2
- bumping version to pull in new cockpit-ovirt dependencies
* Mon Feb 13 2017 Greg Sheremeta <[email protected]> - 1.0.4-1
- bumping version to pull in new ovirt-js-dependencies dependencies
* Sat Feb 11 2017 Ryan Barry <[email protected]> - 1.0.3-4
- Add dependencies for cockpit-ovirt
* Wed Feb 8 2017 Greg Sheremeta <[email protected]> - 1.0.3-3
- bumping version to pull in new ovirt-js-dependencies dependencies
* Wed Feb 8 2017 Vojtech Szocs <[email protected]> - 1.0.3-2
- Improve LICENSES file generation, parsing license information
from Yarn's global cache instead of calling "yarn info" (which
makes HTTP request) per each dependency (we have lots of 'em).
* Tue Feb 7 2017 Vojtech Szocs <[email protected]> - 1.0.3-1
- "automation" directory cleanup.
- "setup-env.sh" now modifies the "yarn.lock" file to make sure
it does not contain "resolved" entries containing HTTP links.
This is needed in order to use Yarn's "offline mirror" feature.
- Node.js and Yarn versions are now specified in .packages file.
* Mon Feb 6 2017 Vojtech Szocs <[email protected]> - 1.0.2-1
- Build script improvements.
* Mon Feb 6 2017 Greg Sheremeta <[email protected]> - 1.0.1-6
- made yarn.lock file mandatory
* Mon Feb 6 2017 Greg Sheremeta <[email protected]> - 1.0.1-5
- bumping version to pull in new dashboard dependencies
* Fri Feb 3 2017 Greg Sheremeta <[email protected]> - 1.0.1-4
- fixed builds that were picking up pure-offline lock files
* Thu Feb 2 2017 Greg Sheremeta <[email protected]> - 1.0.1-3
- fixed build to put artifacts in exported_artifacts
* Thu Feb 2 2017 Greg Sheremeta <[email protected]> - 1.0.1-2
- configured to use Standard CI to build the RPM
* Tue Jan 24 2017 Greg Sheremeta <[email protected]> - 1.0.1-1
- added ovirt-js-dependencies to projects.list
* Mon Jan 23 2017 Vojtech Szocs <[email protected]> - 1.0.0-1
- Use Yarn to download JavaScript dependencies based on projects.list
file. Use Yarn's "offline mirror" feature to download .tar.gz source
of each dependency into an offline cache directory, which is part of
the RPM package.
- Generate the LICENSES file based on the content of the offline cache
directory via "yarn info {pkg_name}@{pkg_version} license" command.
- Require ovirt-engine-{nodejs,yarn} when building the package.
* Wed Dec 21 2016 Ramesh Nachimuthu <[email protected]> - 0.0.19-1
- Add ini.
* Sun Dec 18 2016 Juan Hernandez <[email protected]> - 0.0.18-1
- Add highlight.js.
* Wed Dec 14 2016 Martin Betak <[email protected]> - 0.0.17-1
- Bump ovirt-ui-components version to 0.1.2.
* Fri Nov 25 2016 Martin Betak <[email protected]> - 0.0.16-1
- Bump ovirt-ui-components version to 0.1.0.
* Fri Nov 18 2016 Vojtech Szocs <[email protected]> - 0.0.15-1
- Bump Node.js version to 6.9.1.
* Mon Nov 14 2016 Martin Betak <[email protected]> - 0.0.14-1
- Add new ovirt-web-ui dependencies based on create-react-app eject.
* Thu Aug 4 2016 Vojtech Szocs <[email protected]> - 0.0.13-1
- Update build.sh to address various npm warnings when building RPM.
- npm modules to be included in RPM are now declared in dependencies,
npm modules needed only for RPM build are now in devDependencies.
- Modules listed in devDependencies should no longer be mentioned in
CHANGES.adoc file as they are not included in resulting RPM.
* Tue Aug 2 2016 Juan Hernandez <[email protected]> - 0.0.12-1
- Automatically calculate RPM dependencies using "find-requires".
* Mon Aug 1 2016 Juan Hernandez <[email protected]> - 0.0.11-1
- Don't extract the tarball, to avoid RPM file number limits.
* Thu Jul 28 2016 Vojtech Szocs <[email protected]> - 0.0.10-1
- Add Intl API (ECMA-402) polyfill.
* Tue Jun 28 2016 Vojtech Szocs <[email protected]> - 0.0.9-1
- Add test-related dependencies: Karma, Mocha, Chai, PhantomJS,
Sinon, babel-polyfill and imports-loader.
* Thu May 26 2016 Vojtech Szocs <[email protected]> - 0.0.8-1
- Add i18n-related dependencies: intl-messageformat, react-intl
and json-loader for webpack.
* Tue May 10 2016 Vojtech Szocs <[email protected]> - 0.0.7-1
- Add jQuery.
* Thu May 5 2016 Vojtech Szocs <[email protected]> - 0.0.6-1
- Add setup-env.sh script.
* Fri Apr 22 2016 Marek Libra <[email protected]> - 0.0.5-1
- Add po2json for webpack.
* Thu Apr 21 2016 Vojtech Szocs <[email protected]> - 0.0.4-1
- Bump babel-core, copy-webpack-plugin, ESLint and its React
plugin, React and React-DOM, style-loader and webpack.
- Add C3, D3 and ESLint config for Standard.js.
* Fri Apr 15 2016 Ryan Barry <[email protected]> - 0.0.3-1
- Add classnames, Bootstrap, Patternfly, and plugins for webpack.
* Sun Apr 3 2016 Martin Betak <[email protected]> - 0.0.2-1
- Added ESLint and ESLint Standard.js plugin.
* Thu Mar 31 2016 Juan Hernandez <[email protected]> - 0.0.1-1
- Build only for x86_64.
* Tue Mar 29 2016 Juan Hernandez <[email protected]> - 0.0.1-0.0
- Added ReactJS, Babel and Webpack.
* Tue Mar 29 2016 Juan Hernandez <[email protected]> - 0.0.0-0.2
- Added LICENSES.csv.
* Mon Mar 28 2016 Juan Hernandez <[email protected]> - 0.0.0-0.1
- Move the modules to a "node_modules" directory, as otherwise some
tools, like "webpack", fail to find some of them.
* Sat Mar 5 2016 Juan Hernandez <[email protected]> - 0.0.0-0.0
- Initial packaging.