Skip to content

Commit

Permalink
🔨 Update type-check script (#1164)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukevella authored Jun 19, 2024
1 parent 997a1ee commit e5be316
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: ./.github/actions/yarn-install

- name: Check types
run: yarn lint:tsc
run: yarn type-check

linting:
name: Linting
Expand Down
2 changes: 1 addition & 1 deletion apps/landing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"analyze": "cross-env ANALYZE=true next build",
"start": "next start",
"lint": "eslint .",
"lint:tsc": "tsc --noEmit",
"type-check": "tsc --pretty --noEmit",
"i18n:scan": "i18next-scanner --config i18next-scanner.config.js",
"prettier": "prettier --write ./src"
},
Expand Down
2 changes: 1 addition & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"analyze": "cross-env ANALYZE=true next build",
"start": "next start",
"lint": "eslint .",
"lint:tsc": "tsc --noEmit",
"type-check": "tsc --pretty --noEmit",
"i18n:scan": "i18next-scanner --config i18next-scanner.config.js",
"prettier": "prettier --write ./src",
"test:integration": "NODE_ENV=test playwright test",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"test:unit": "turbo test:unit",
"lint": "turbo lint",
"i18n:scan": "turbo i18n:scan",
"lint:tsc": "turbo lint:tsc",
"type-check": "turbo type-check",
"prettier": "prettier --write .",
"release": "./scripts/create-release.sh"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"private": true,
"scripts": {
"lint": "eslint .",
"lint:tsc": "tsc --noEmit"
"type-check": "tsc --pretty --noEmit"
},
"main": "src/index.ts",
"types": "src/index.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/emails/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"scripts": {
"dev": "email dev --port 3333 --dir ./src/templates",
"lint": "eslint ./src",
"lint:tsc": "tsc --noEmit"
"type-check": "tsc --pretty --noEmit"
},
"main": "./src/index.ts",
"types": "./src/index.ts",
Expand Down
2 changes: 1 addition & 1 deletion turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"lint": {
"outputs": []
},
"lint:tsc": {
"type-check": {
"outputs": []
},
"dev": {
Expand Down

0 comments on commit e5be316

Please sign in to comment.