Skip to content

Commit

Permalink
Adding typecheck command
Browse files Browse the repository at this point in the history
  • Loading branch information
weotch committed Sep 30, 2024
1 parent 099ff54 commit f0f3085
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"scripts": {
"build": "lerna run build",
"test": "lerna run test --concurrency 1",
"typecheck": "lerna run typecheck",
"prepare": "yarn build"
},
"dependencies": {},
Expand Down
3 changes: 2 additions & 1 deletion packages/contentful/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
],
"scripts": {
"build": "vite build",
"test": "cypress run --component"
"test": "cypress run --component",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@react-visual/react": "^1.1.0"
Expand Down
3 changes: 2 additions & 1 deletion packages/next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
],
"scripts": {
"build": "vite build",
"test": "cypress run --component"
"test": "cypress run --component",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@react-visual/react": "^1.1.0"
Expand Down
3 changes: 2 additions & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
],
"scripts": {
"build": "vite build",
"test": "cypress run --component"
"test": "cypress run --component",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@react-hook/media-query": "^1.1.1",
Expand Down
3 changes: 2 additions & 1 deletion packages/sanity-next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
],
"scripts": {
"build": "vite build",
"test": "cypress run --component"
"test": "cypress run --component",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@react-visual/next": "^1.1.0",
Expand Down

0 comments on commit f0f3085

Please sign in to comment.