11 次代碼提交 9fbddf87ed ... c92f8b41cd

作者 SHA1 備註 提交日期
  Fela Maslen c92f8b41cd feat: shuffle mode help and status bar 4 年之前
  Fela Maslen b1a694107c feat: toggle shuffle mode with S key 4 年之前
  Fela Maslen dec723c3e2 feat: global state setter actions using functions of previous state 4 年之前
  Fela Maslen 2e0e260bd1 feat: use shuffle endpoint when shuffle mode is true in queue hook 4 年之前
  Fela Maslen a7a095d15f feat: added shuffleMode to client player state 4 年之前
  Fela Maslen 9fbddf87ed feat: shuffle mode help and status bar 4 年之前
  Fela Maslen d1b73f4886 feat: toggle shuffle mode with S key 4 年之前
  Fela Maslen 1218daf00d feat: global state setter actions using functions of previous state 4 年之前
  Fela Maslen 6bef0c4bc4 feat: use shuffle endpoint when shuffle mode is true in queue hook 4 年之前
  Fela Maslen 4251322ee4 feat: added shuffleMode to client player state 4 年之前
  Fela Maslen 0ba0629357 feat: check client types on Jenkins build 4 年之前
共有 3 個文件被更改,包括 2 次插入3 次删除
  1. 1 1
      Jenkinsfile
  2. 0 2
      gmus-web/Makefile
  3. 1 0
      gmus-web/src/hooks/vim.ts

+ 1 - 1
Jenkinsfile

@@ -33,7 +33,7 @@ node {
           stage('Lint') {
           stage('Lint') {
             parallel([
             parallel([
               "gmus-web:lint": {
               "gmus-web:lint": {
-                sh "docker run -e 'CI=1' --rm docker.fela.space/gmus-web-builder:latest sh -c 'make lint && make check-types'"
+                sh "docker run -e 'CI=1' --rm docker.fela.space/gmus-web-builder:latest sh -c 'make lint'"
               },
               },
               "gmus-backend:lint": {
               "gmus-backend:lint": {
                 sh "docker run --rm ${IMAGE_BACKEND} sh -c 'make lint'"
                 sh "docker run --rm ${IMAGE_BACKEND} sh -c 'make lint'"

+ 0 - 2
gmus-web/Makefile

@@ -4,8 +4,6 @@ IMG 	:= ${NAME}:${TAG}
 
 
 lint:
 lint:
 	yarn lint
 	yarn lint
-check-types:
-	@./node_modules/.bin/tsc
 
 
 test:
 test:
 	yarn test
 	yarn test

+ 1 - 0
gmus-web/src/hooks/vim.ts

@@ -24,6 +24,7 @@ export const Keys = {
   K: 'k',
   K: 'k',
   P: 'P',
   P: 'P',
   p: 'p',
   p: 'p',
+  S: 's',
   Z: 'z',
   Z: 'z',
 };
 };