File tree Expand file tree Collapse file tree 19 files changed +209
-0
lines changed Expand file tree Collapse file tree 19 files changed +209
-0
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ tools_enabled:
44
44
- webpack-cli
45
45
- wkhtmltopdf
46
46
- wp-cli
47
+ - wscat
47
48
- yamllint
48
49
- yq
49
50
- zsh
@@ -691,6 +692,18 @@ tools_available:
691
692
5.3 :
692
693
type : custom
693
694
pre : WPCLI_URL="https://github.com/wp-cli/wp-cli/releases/download/v1.5.1/wp-cli-1.5.1.phar"
695
+ wscat :
696
+ disabled : []
697
+ check : wscat --version | grep -E '[0-9][.0-9]+' || (wscat --version; false)
698
+ all :
699
+ type : npm
700
+ package : wscat
701
+ binary : wscat
702
+ version :
703
+ build_dep : []
704
+ run_dep : []
705
+ pre :
706
+ post :
694
707
yamllint :
695
708
disabled : []
696
709
check : yamllint --version 2>&1 | grep -E '[0-9][.0-9]+' || (yamllint --version; false)
Original file line number Diff line number Diff line change 4
4
## Unreleased
5
5
6
6
7
+ ## Release 0.148
8
+
9
+ ### Added
10
+ - Added ` wscat ` to work with websockets
11
+
12
+
7
13
## Release 0.147
8
14
9
15
### Fixed
Original file line number Diff line number Diff line change @@ -461,6 +461,13 @@ RUN set -eux \
461
461
&& webpack-cli --version | grep -E ' [0-9][.0-9]+' || (webpack-cli --version; false) \
462
462
&& true
463
463
464
+ # -------------------- (npm) wscat --------------------
465
+ RUN set -eux \
466
+ && su -c ' . /opt/nvm/nvm.sh; npm install --location=global wscat' devilbox \
467
+ && ln -s /opt/nvm/versions/node/$(su -c ' . /opt/nvm/nvm.sh; node --version' devilbox)/bin/wscat /usr/local/bin/ \
468
+ && wscat --version | grep -E ' [0-9][.0-9]+' || (wscat --version; false) \
469
+ && true
470
+
464
471
# -------------------- (pip) yamllint --------------------
465
472
RUN set -eux \
466
473
&& pip install --no-cache-dir --no-compile --force-reinstall yamllint \
@@ -724,6 +731,11 @@ RUN set -eux \
724
731
&& webpack-cli --version | grep -E ' [0-9][.0-9]+' || (webpack-cli --version; false) \
725
732
&& true
726
733
734
+ # -------------------- (npm) wscat --------------------
735
+ RUN set -eux \
736
+ && wscat --version | grep -E ' [0-9][.0-9]+' || (wscat --version; false) \
737
+ && true
738
+
727
739
# -------------------- (pip) yamllint --------------------
728
740
RUN set -eux \
729
741
&& yamllint --version 2>&1 | grep -E ' [0-9][.0-9]+' || (yamllint --version; false) \
Original file line number Diff line number Diff line change @@ -533,6 +533,13 @@ RUN set -eux \
533
533
&& wp --allow-root --version | grep -E ' [0-9][.0-9]+' || (wp --allow-root --version; false) \
534
534
&& true
535
535
536
+ # -------------------- (npm) wscat --------------------
537
+ RUN set -eux \
538
+ && su -c ' . /opt/nvm/nvm.sh; npm install --location=global wscat' devilbox \
539
+ && ln -s /opt/nvm/versions/node/$(su -c ' . /opt/nvm/nvm.sh; node --version' devilbox)/bin/wscat /usr/local/bin/ \
540
+ && wscat --version | grep -E ' [0-9][.0-9]+' || (wscat --version; false) \
541
+ && true
542
+
536
543
# -------------------- (pip) yamllint --------------------
537
544
RUN set -eux \
538
545
&& pip install --no-cache-dir --no-compile --force-reinstall yamllint \
@@ -817,6 +824,11 @@ RUN set -eux \
817
824
&& wp --allow-root --version | grep -E ' [0-9][.0-9]+' || (wp --allow-root --version; false) \
818
825
&& true
819
826
827
+ # -------------------- (npm) wscat --------------------
828
+ RUN set -eux \
829
+ && wscat --version | grep -E ' [0-9][.0-9]+' || (wscat --version; false) \
830
+ && true
831
+
820
832
# -------------------- (pip) yamllint --------------------
821
833
RUN set -eux \
822
834
&& yamllint --version 2>&1 | grep -E ' [0-9][.0-9]+' || (yamllint --version; false) \
Original file line number Diff line number Diff line change @@ -556,6 +556,13 @@ RUN set -eux \
556
556
&& wp --allow-root --version | grep -E ' [0-9][.0-9]+' || (wp --allow-root --version; false) \
557
557
&& true
558
558
559
+ # -------------------- (npm) wscat --------------------
560
+ RUN set -eux \
561
+ && su -c ' . /opt/nvm/nvm.sh; npm install --location=global wscat' devilbox \
562
+ && ln -s /opt/nvm/versions/node/$(su -c ' . /opt/nvm/nvm.sh; node --version' devilbox)/bin/wscat /usr/local/bin/ \
563
+ && wscat --version | grep -E ' [0-9][.0-9]+' || (wscat --version; false) \
564
+ && true
565
+
559
566
# -------------------- (pip) yamllint --------------------
560
567
RUN set -eux \
561
568
&& pip install --no-cache-dir --no-compile --force-reinstall yamllint \
@@ -855,6 +862,11 @@ RUN set -eux \
855
862
&& wp --allow-root --version | grep -E ' [0-9][.0-9]+' || (wp --allow-root --version; false) \
856
863
&& true
857
864
865
+ # -------------------- (npm) wscat --------------------
866
+ RUN set -eux \
867
+ && wscat --version | grep -E ' [0-9][.0-9]+' || (wscat --version; false) \
868
+ && true
869
+
858
870
# -------------------- (pip) yamllint --------------------
859
871
RUN set -eux \
860
872
&& yamllint --version 2>&1 | grep -E ' [0-9][.0-9]+' || (yamllint --version; false) \
Original file line number Diff line number Diff line change @@ -611,6 +611,13 @@ RUN set -eux \
611
611
&& wp --allow-root --version | grep -E ' [0-9][.0-9]+' || (wp --allow-root --version; false) \
612
612
&& true
613
613
614
+ # -------------------- (npm) wscat --------------------
615
+ RUN set -eux \
616
+ && su -c ' . /opt/nvm/nvm.sh; npm install --location=global wscat' devilbox \
617
+ && ln -s /opt/nvm/versions/node/$(su -c ' . /opt/nvm/nvm.sh; node --version' devilbox)/bin/wscat /usr/local/bin/ \
618
+ && wscat --version | grep -E ' [0-9][.0-9]+' || (wscat --version; false) \
619
+ && true
620
+
614
621
# -------------------- (pip) yamllint --------------------
615
622
RUN set -eux \
616
623
&& pip install --no-cache-dir --no-compile --force-reinstall yamllint \
@@ -942,6 +949,11 @@ RUN set -eux \
942
949
&& wp --allow-root --version | grep -E ' [0-9][.0-9]+' || (wp --allow-root --version; false) \
943
950
&& true
944
951
952
+ # -------------------- (npm) wscat --------------------
953
+ RUN set -eux \
954
+ && wscat --version | grep -E ' [0-9][.0-9]+' || (wscat --version; false) \
955
+ && true
956
+
945
957
# -------------------- (pip) yamllint --------------------
946
958
RUN set -eux \
947
959
&& yamllint --version 2>&1 | grep -E ' [0-9][.0-9]+' || (yamllint --version; false) \
Original file line number Diff line number Diff line change @@ -636,6 +636,13 @@ RUN set -eux \
636
636
&& wp --allow-root --version | grep -E '[0-9][.0-9]+' || (wp --allow-root --version; false) \
637
637
&& true
638
638
639
+ # -------------------- (npm) wscat --------------------
640
+ RUN set -eux \
641
+ && su -c '. /opt/nvm/nvm.sh; npm install --location=global wscat' devilbox \
642
+ && ln -s /opt/nvm/versions/node/$(su -c '. /opt/nvm/nvm.sh; node --version' devilbox)/bin/wscat /usr/local/bin/ \
643
+ && wscat --version | grep -E '[0-9][.0-9]+' || (wscat --version; false) \
644
+ && true
645
+
639
646
# -------------------- (pip) yamllint --------------------
640
647
RUN set -eux \
641
648
&& pip install --no-cache-dir --no-compile --force-reinstall yamllint \
@@ -980,6 +987,11 @@ RUN set -eux \
980
987
&& wp --allow-root --version | grep -E '[0-9][.0-9]+' || (wp --allow-root --version; false) \
981
988
&& true
982
989
990
+ # -------------------- (npm) wscat --------------------
991
+ RUN set -eux \
992
+ && wscat --version | grep -E '[0-9][.0-9]+' || (wscat --version; false) \
993
+ && true
994
+
983
995
# -------------------- (pip) yamllint --------------------
984
996
RUN set -eux \
985
997
&& yamllint --version 2>&1 | grep -E '[0-9][.0-9]+' || (yamllint --version; false) \
Original file line number Diff line number Diff line change @@ -636,6 +636,13 @@ RUN set -eux \
636
636
&& wp --allow-root --version | grep -E '[0-9][.0-9]+' || (wp --allow-root --version; false) \
637
637
&& true
638
638
639
+ # -------------------- (npm) wscat --------------------
640
+ RUN set -eux \
641
+ && su -c '. /opt/nvm/nvm.sh; npm install --location=global wscat' devilbox \
642
+ && ln -s /opt/nvm/versions/node/$(su -c '. /opt/nvm/nvm.sh; node --version' devilbox)/bin/wscat /usr/local/bin/ \
643
+ && wscat --version | grep -E '[0-9][.0-9]+' || (wscat --version; false) \
644
+ && true
645
+
639
646
# -------------------- (pip) yamllint --------------------
640
647
RUN set -eux \
641
648
&& pip install --no-cache-dir --no-compile --force-reinstall yamllint \
@@ -980,6 +987,11 @@ RUN set -eux \
980
987
&& wp --allow-root --version | grep -E '[0-9][.0-9]+' || (wp --allow-root --version; false) \
981
988
&& true
982
989
990
+ # -------------------- (npm) wscat --------------------
991
+ RUN set -eux \
992
+ && wscat --version | grep -E '[0-9][.0-9]+' || (wscat --version; false) \
993
+ && true
994
+
983
995
# -------------------- (pip) yamllint --------------------
984
996
RUN set -eux \
985
997
&& yamllint --version 2>&1 | grep -E '[0-9][.0-9]+' || (yamllint --version; false) \
Original file line number Diff line number Diff line change @@ -636,6 +636,13 @@ RUN set -eux \
636
636
&& wp --allow-root --version | grep -E '[0-9][.0-9]+' || (wp --allow-root --version; false) \
637
637
&& true
638
638
639
+ # -------------------- (npm) wscat --------------------
640
+ RUN set -eux \
641
+ && su -c '. /opt/nvm/nvm.sh; npm install --location=global wscat' devilbox \
642
+ && ln -s /opt/nvm/versions/node/$(su -c '. /opt/nvm/nvm.sh; node --version' devilbox)/bin/wscat /usr/local/bin/ \
643
+ && wscat --version | grep -E '[0-9][.0-9]+' || (wscat --version; false) \
644
+ && true
645
+
639
646
# -------------------- (pip) yamllint --------------------
640
647
RUN set -eux \
641
648
&& pip install --no-cache-dir --no-compile --force-reinstall yamllint \
@@ -980,6 +987,11 @@ RUN set -eux \
980
987
&& wp --allow-root --version | grep -E '[0-9][.0-9]+' || (wp --allow-root --version; false) \
981
988
&& true
982
989
990
+ # -------------------- (npm) wscat --------------------
991
+ RUN set -eux \
992
+ && wscat --version | grep -E '[0-9][.0-9]+' || (wscat --version; false) \
993
+ && true
994
+
983
995
# -------------------- (pip) yamllint --------------------
984
996
RUN set -eux \
985
997
&& yamllint --version 2>&1 | grep -E '[0-9][.0-9]+' || (yamllint --version; false) \
Original file line number Diff line number Diff line change @@ -636,6 +636,13 @@ RUN set -eux \
636
636
&& wp --allow-root --version | grep -E '[0-9][.0-9]+' || (wp --allow-root --version; false) \
637
637
&& true
638
638
639
+ # -------------------- (npm) wscat --------------------
640
+ RUN set -eux \
641
+ && su -c '. /opt/nvm/nvm.sh; npm install --location=global wscat' devilbox \
642
+ && ln -s /opt/nvm/versions/node/$(su -c '. /opt/nvm/nvm.sh; node --version' devilbox)/bin/wscat /usr/local/bin/ \
643
+ && wscat --version | grep -E '[0-9][.0-9]+' || (wscat --version; false) \
644
+ && true
645
+
639
646
# -------------------- (pip) yamllint --------------------
640
647
RUN set -eux \
641
648
&& pip install --no-cache-dir --no-compile --force-reinstall yamllint \
@@ -980,6 +987,11 @@ RUN set -eux \
980
987
&& wp --allow-root --version | grep -E '[0-9][.0-9]+' || (wp --allow-root --version; false) \
981
988
&& true
982
989
990
+ # -------------------- (npm) wscat --------------------
991
+ RUN set -eux \
992
+ && wscat --version | grep -E '[0-9][.0-9]+' || (wscat --version; false) \
993
+ && true
994
+
983
995
# -------------------- (pip) yamllint --------------------
984
996
RUN set -eux \
985
997
&& yamllint --version 2>&1 | grep -E '[0-9][.0-9]+' || (yamllint --version; false) \
You can’t perform that action at this time.
0 commit comments