|
29 | 29 | "@codemirror/lang-javascript": "^6.2.1", |
30 | 30 | "@emotion/react": "11.11.4", |
31 | 31 | "@emotion/styled": "11.11.5", |
32 | | - "@graasp/apps-query-client": "^3.4.11", |
33 | | - "@graasp/sdk": "4.7.2", |
| 32 | + "@graasp/apps-query-client": "^3.4.14", |
| 33 | + "@graasp/sdk": "4.10.1", |
34 | 34 | "@graasp/ui": "4.17.1", |
35 | 35 | "@mui/icons-material": "5.15.17", |
36 | 36 | "@mui/lab": "5.0.0-alpha.170", |
|
63 | 63 | "build:test": "yarn vite build --mode test", |
64 | 64 | "preview": "yarn vite preview", |
65 | 65 | "preview:test": "yarn vite preview --mode test", |
66 | | - "postinstall": "husky install", |
| 66 | + "postinstall": "husky", |
67 | 67 | "lint": "eslint .", |
68 | 68 | "prettier:write": "prettier {src,cypress}/**/*.{ts,tsx,js,jsx} --write", |
69 | 69 | "prettier:check": "prettier {src,cypress}/**/*.{ts,tsx,js,jsx} --check", |
70 | 70 | "type-check": "tsc --noEmit", |
71 | | - "check": "yarn lint && yarn prettier:check && yarn type-check", |
72 | | - "hooks:install": "husky install", |
73 | | - "hooks:uninstall": "husky uninstall", |
74 | | - "pre-commit": "yarn prettier:check && yarn lint", |
| 71 | + "check": "concurrently --kill-others-on-fail -s all -n \"type-check,linter,prettier\" \"yarn type-check\" \"yarn lint\" \"yarn prettier:check\"", |
| 72 | + "pre-commit": "concurrently --kill-others-on-fail -s all -n \"checks,tests\" \"yarn check\" \"yarn test\"", |
75 | 73 | "cypress:open": "env-cmd -f ./.env.test cypress open", |
76 | | - "test": "concurrently -k -s first \"yarn start:test\" \"yarn test:ci\" ", |
| 74 | + "test": "concurrently -k -s first -n \"test-server,cypress\" \"yarn start:test\" \"yarn test:ci\" ", |
77 | 75 | "test:ci": "env-cmd -f ./.env.test cypress run --browser chrome --headless && nyc report --reporter=text --reporter=text-summary", |
78 | 76 | "unit-tests": "vitest", |
79 | 77 | "cov:report": "open ./coverage/lcov-report/index.html" |
|
0 commit comments