Skip to content

Commit

Permalink
chore: add type-check command
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel Hobl committed Feb 23, 2021
1 parent 46d40bd commit c57d008
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 2 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"scripts": {
"build": "yarn workspaces run build",
"clean": "yarn workspaces run clean",
"type-check": "yarn workspaces run type-check",
"postinstall": "husky install",
"lint": "eslint .",
"prepublishOnly": "pinst --disable",
Expand Down
3 changes: 2 additions & 1 deletion packages/box/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"build": "tsc --build",
"clean": "tsc --build --clean",
"develop": "tsc --build --watch",
"test": "jest --passWithNoTests"
"test": "jest --passWithNoTests",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@gumption-ui/quark": "0.0.1"
Expand Down
1 change: 1 addition & 0 deletions packages/interpolate/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"build": "tsc --build",
"clean": "tsc --build --clean",
"develop": "tsc --build --watch",
"type-check": "tsc --noEmit",
"test": "jest"
},
"jest": {
Expand Down
3 changes: 2 additions & 1 deletion packages/jsx/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"develop": "tsc --build --watch"
"develop": "tsc --build --watch",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@gumption-ui/utils": "0.0.1"
Expand Down
1 change: 1 addition & 0 deletions packages/quark/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"build": "tsc --build",
"clean": "tsc --build --clean",
"develop": "tsc --build --watch",
"type-check": "tsc --noEmit",
"test": "jest --passWithNoTests"
},
"jest": {
Expand Down
1 change: 1 addition & 0 deletions packages/stack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"build": "tsc --build",
"clean": "tsc --build --clean",
"develop": "tsc --build --watch",
"type-check": "tsc --noEmit",
"test": "jest --passWithNoTests"
},
"jest": {
Expand Down
1 change: 1 addition & 0 deletions packages/theme-base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"build": "tsc --build",
"clean": "tsc --build --clean",
"develop": "tsc --build --watch",
"type-check": "tsc --noEmit",
"test": "jest --passWithNoTests"
},
"dependencies": {
Expand Down
1 change: 1 addition & 0 deletions packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"build": "tsc --build",
"clean": "tsc --build --clean",
"develop": "tsc --build --watch",
"type-check": "tsc --noEmit",
"test": "jest --passWithNoTests"
},
"dependencies": {
Expand Down

0 comments on commit c57d008

Please sign in to comment.