mirror of
https://github.com/lukevella/rallly.git
synced 2025-06-07 05:01:49 +02:00
🔨 Update type-check script (#1164)
This commit is contained in:
parent
997a1eec78
commit
e5be3166ea
7 changed files with 7 additions and 7 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -21,7 +21,7 @@ jobs:
|
|||
- uses: ./.github/actions/yarn-install
|
||||
|
||||
- name: Check types
|
||||
run: yarn lint:tsc
|
||||
run: yarn type-check
|
||||
|
||||
linting:
|
||||
name: Linting
|
||||
|
|
|
@ -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"
|
||||
},
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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"
|
||||
},
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
"lint": {
|
||||
"outputs": []
|
||||
},
|
||||
"lint:tsc": {
|
||||
"type-check": {
|
||||
"outputs": []
|
||||
},
|
||||
"dev": {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue