-
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: dependencies version consistency (#2883)
* feat: initialize syncpack config file * feat: configure syncpack to only inspect the 'dependencies' properties of package.json files. * feat: add syncpack as a development dependency on the monorepo. * ci: add a command in the package.json to run the job in CI Also abstracted the logic for checking mismatches to a script. * chore: update pnpm-lock * ci: configure knip to ignore syncpack Also gave ci system permission to execute check-deps.sh * feat: configure syncpack to ignore local dependencies. * ci: configure syncpack workflow * chore: clean up prevoius syncpack implementations * ci: rename syncpack workflow extension from yml to yaml * chore: favour lint check over new action * chore: updated pnpm-lock * chore: added sorting * chore: enhanced sorting * chore: removed formatting from fix * chore: testing fix for `vp-docs` * chore: downgraded syncpack to be node18 compatible * Rebuild * chore: revert back to master * chore: perform fixes * chore: install * chore: changeset --------- Co-authored-by: Richard Gregory <[email protected]>
- Loading branch information
1 parent
a2ef812
commit 95e7108
Showing
13 changed files
with
575 additions
and
1,229 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,6 @@ | ||
--- | ||
"@fuel-ts/abi-coder": patch | ||
"create-fuels": patch | ||
--- | ||
|
||
chore: dependencies version consistency |
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"dependencyTypes": [ | ||
"dev", | ||
"prod" | ||
], | ||
"versionGroups": [ | ||
{ | ||
"label": "Ignore local dependencies", | ||
"dependencies": [ | ||
"$LOCAL" | ||
], | ||
"isIgnored": true | ||
} | ||
], | ||
"sortAz": [], | ||
"sortFirst": [ | ||
"private", | ||
"name", | ||
"description", | ||
"repository", | ||
"homepage", | ||
"bugs", | ||
"version", | ||
"author", | ||
"license", | ||
"engines", | ||
"packageManager", | ||
"bin", | ||
"main", | ||
"module", | ||
"exports", | ||
"types", | ||
"typesVersions", | ||
"files", | ||
"scripts", | ||
"dependencies", | ||
"devDependencies" | ||
] | ||
} |
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
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
Oops, something went wrong.