-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: move type:check to lint hook (#3381)
* refactor: move type:check to lint hook - Removed type:check from pretest, build, and postbuild scripts - Added type checking to lint command - Improves development speed by reducing redundant type checks Fixes #3248 * refactor: move type:check to lint hook- Removed type:check from pretest, build, and postbuild scripts- Added type checking to lint command- Improves development speed by reducing redundant type checksFixes #3248 * Add type:check to turbo tasks and update root package.json lint script * Add type:check to turbo tasks and update root package.json lint script * chore: add changeset for type checking updates * Update packages/create-fuels/package.json Co-authored-by: Peter Smith <[email protected]> * Update .changeset/polite-seas-taste.md Co-authored-by: Peter Smith <[email protected]> * Update packages/fuel-gauge/package.json Co-authored-by: Peter Smith <[email protected]> * Update packages/fuels/package.json Co-authored-by: Peter Smith <[email protected]> * Update internal/benchmarks/package.json Co-authored-by: Peter Smith <[email protected]> * Update package.json Co-authored-by: Peter Smith <[email protected]> * Update .changeset/polite-seas-taste.md Co-authored-by: Peter Smith <[email protected]> * Update apps/docs-snippets/package.json Co-authored-by: Peter Smith <[email protected]> --------- Co-authored-by: Chad Nehemiah <[email protected]> Co-authored-by: Peter Smith <[email protected]>
- Loading branch information
1 parent
7f92490
commit 30585c1
Showing
9 changed files
with
15 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
--- | ||
|
||
chore: move type:check to lint hook |
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
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,7 +5,7 @@ | |
"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" | ||
|
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