This repository has been archived by the owner on Oct 22, 2024. It is now read-only.
forked from paritytech/polkadot-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid global pnpm store (paritytech#921)
* Use local pnpm store * Fix rustfmt toolchain version * Add troubleshooting note about pnpm store * Remove old nvmrc * Build contracts before relayer The relayer requires the current contracts' compile artifacts to generate bindings. Without this, changes to the contracts aren't picked up properly: For fresh dev environments, the relayer build fails unless we first compile the contracts. For existing environments, we must manually ensure that contracts are built before running start-services, or relayer contract bindings will be out of date. * Format files with pre-commit hook * Add postcheckout hook to keep submodules updated * Revert "Format files with pre-commit hook" This reverts commit e9b184cdfcd67a1afc551c919b7d28fe855380ea. * Revert "Fix rustfmt toolchain version" This reverts commit c603e5451d5e5f99fd36b9ac02b92163cef11cf9.
- Loading branch information
Showing
6 changed files
with
29 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
git submodule update |
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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
.turbo | ||
.deps | ||
.pnpm-store | ||
.turbo |
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 @@ | ||
store-dir=.pnpm-store/ |
This file was deleted.
Oops, something went wrong.
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