forked from FuelLabs/fuels-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: move type:check to lint hook- Removed type:check from prete…
…st, build, and postbuild scripts- Added type checking to lint command- Improves development speed by reducing redundant type checksFixes FuelLabs#3248
- Loading branch information
1 parent
62b5607
commit 4d67d8f
Showing
5 changed files
with
8 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,10 +5,10 @@ | |
"description": "", | ||
"author": "Fuel Labs <[email protected]> (https://fuel.network/)", | ||
"scripts": { | ||
"pretest": "run-s build:forc build:process-predicates type:check", | ||
"pretest": "run-s build:forc build:process-predicates", | ||
"build:forc": "pnpm fuels build", | ||
"build:process-predicates": "tsx ./scripts/process-predicates.ts", | ||
"type:check": "tsc --noEmit" | ||
"lint": "tsc --noEmit" | ||
}, | ||
"license": "Apache-2.0", | ||
"dependencies": { | ||
|