You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Ticket(s) lié(s)
https://jira-mcas.atlassian.net/browse/VAO-1186
## Description
- [x] Renommage de `shared` en `shared-ui`
- [x] Ajout de `shared-bridge`
- [x] Exemple de partage de constantes
### Dont régressions potentielles à tester
## Screenshot / liens loom
## Check-list
- [ ] Ma branche est rebase sur main
- [ ] Des tests ont été écrits pour tous les endpoints créés ou modifiés
- [ ] Refacto "à la volée" des parties sur lesquelles j'ai codée
- [ ] Plus de `console.log`
- [ ] J'ai ajouté une validation de schéma sur la route que j'ai ajouté
ou modifié
Copy file name to clipboardExpand all lines: package.json
+6-3Lines changed: 6 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -7,17 +7,20 @@
7
7
"private": true,
8
8
"scripts": {
9
9
"prepare": "husky install",
10
-
"lint:all": "yarn run lint:backend && yarn run lint:frontend-usagers && yarn run lint:frontend-bo && yarn run lint:shared && yarn run lint:api",
10
+
"lint:all": "yarn run lint:backend && yarn run lint:frontend-usagers && yarn run lint:frontend-bo && yarn run lint:shared && yarn run lint:api && yarn run lint:cron",
11
11
"lint:all:fix": "yarn run lint:backend --fix && yarn run lint:frontend-usagers --fix && yarn run lint:frontend-bo --fix && run lint:shared --fix && run lint:api --fix",
12
12
"lint:api": "yarn --cwd ./packages/external-api run lint",
13
13
"lint:backend": "yarn --cwd ./packages/backend run lint",
14
+
"lint:cron": "yarn --cwd ./packages/cron run lint",
14
15
"lint:frontend-usagers": "yarn --cwd ./packages/frontend-usagers run lint",
15
16
"lint:frontend-bo": "yarn --cwd ./packages/frontend-bo run lint",
16
-
"lint:shared": "yarn --cwd ./packages/shared run lint",
17
+
"lint:shared": "yarn --cwd ./packages/shared-ui run lint && yarn --cwd ./packages/shared-bridge run lint",
0 commit comments