Skip to content

Commit

Permalink
check-types in turbo
Browse files Browse the repository at this point in the history
  • Loading branch information
pitiscarf committed Nov 6, 2024
1 parent a30e505 commit 1c661a2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
"name": "service-national-universel",
"scripts": {
"postinstall": "patch-package",
"lint": "turbo run lint --continue",
"dev": "[[ -e .git/hooks/pre-commit ]] && dotenv -- turbo run dev --filter=!antivirus || echo 'Follow Procedure here : https://www.notion.so/jeveuxaider/Gitguardian-1b6d580a315f4f7c8440fde951aa42c9?pvs=4'",
"dev:app": "[[ -e .git/hooks/pre-commit ]] && dotenv -- turbo run dev --filter",
"build": "turbo run build --filter=$APP_NAME",
"start": "turbo run start --filter=$APP_NAME",
"test": "turbo run test --filter=api",
"test": "turbo run test --filter=$APP_NAME",
"lint": "turbo run lint --continue --filter=$APP_NAME",
"check-types": "turbo run check-types --continue --filter=$APP_NAME",
"clean": "turbo run clean"
},
"dependencies": {
Expand Down
4 changes: 4 additions & 0 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@
"outputs": ["dist/**", "build/**"],
"dependsOn": ["^lint"]
},
"check-types": {
"outputs": ["dist/**", "build/**"],
"dependsOn": ["^check-types"]
},
"clean": {
"dependsOn": ["^clean"]
}
Expand Down

0 comments on commit 1c661a2

Please sign in to comment.