-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #74 from rhinestonewtf/feature/monorepo
Feature/monorepo
- Loading branch information
Showing
317 changed files
with
7,332 additions
and
5,485 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 @@ | ||
--- | ||
name: Safe7579 Issue Template | ||
about: Use this template to report a bug in the Safe7579 module | ||
title: "[Safe7579]: [TITLE OF THE ISSUE]" | ||
labels: safe7579, modulekit | ||
--- |
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,50 @@ | ||
on: | ||
- push | ||
- pull_request | ||
|
||
jobs: | ||
lint-modulekit: | ||
uses: "rhinestonewtf/reusable-workflows/.github/workflows/forge-lint-workspaces.yaml@main" | ||
with: | ||
match-workspace: "@rhinestone/modulekit" | ||
|
||
build-modulekit: | ||
uses: "rhinestonewtf/reusable-workflows/.github/workflows/forge-test-workspaces.yaml@main" | ||
with: | ||
match-workspace: "@rhinestone/modulekit" | ||
|
||
lint-safe7579: | ||
needs: ["lint-modulekit"] | ||
uses: "rhinestonewtf/reusable-workflows/.github/workflows/forge-lint-workspaces.yaml@main" | ||
with: | ||
match-workspace: "@rhinestone/safe7579" | ||
|
||
test-safe7579: | ||
needs: ["build-modulekit"] | ||
uses: "rhinestonewtf/reusable-workflows/.github/workflows/forge-test-workspaces.yaml@main" | ||
with: | ||
match-workspace: "@rhinestone/safe7579" | ||
|
||
lint-sessionkeymanager: | ||
needs: ["lint-modulekit"] | ||
uses: "rhinestonewtf/reusable-workflows/.github/workflows/forge-lint-workspaces.yaml@main" | ||
with: | ||
match-workspace: "@rhinestone/sessionkeymanager" | ||
|
||
test-sessionkeymanager: | ||
needs: ["build-modulekit"] | ||
uses: "rhinestonewtf/reusable-workflows/.github/workflows/forge-test-workspaces.yaml@main" | ||
with: | ||
match-workspace: "@rhinestone/sessionkeymanager" | ||
|
||
lint-modulekit-examples: | ||
needs: ["lint-modulekit"] | ||
uses: "rhinestonewtf/reusable-workflows/.github/workflows/forge-lint-workspaces.yaml@main" | ||
with: | ||
match-workspace: "@rhinestone/modulekit-examples" | ||
|
||
test-modulekit-examples: | ||
needs: ["build-modulekit"] | ||
uses: "rhinestonewtf/reusable-workflows/.github/workflows/forge-test-workspaces.yaml@main" | ||
with: | ||
match-workspace: "@rhinestone/modulekit-examples" |
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
Empty file.
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,2 @@ | ||
node_modules/ | ||
test/ |
File renamed without changes.
File renamed without changes.
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,15 @@ | ||
ds-test/=node_modules/ds-test/src/ | ||
forge-std/=node_modules/forge-std/src/ | ||
account-abstraction/=node_modules/@ERC4337/account-abstraction/contracts/ | ||
account-abstraction-v0.6/=node_modules/@ERC4337/account-abstraction-v0.6/contracts/ | ||
erc7579/=node_modules/erc7579/src/ | ||
sentinellist/=node_modules/sentinellist/src/ | ||
solmate/=node_modules/solmate/src/ | ||
solady/=node_modules/solady/ | ||
solarray/=node_modules/solarray/src/ | ||
@rhinestone/=node_modules/@rhinestone/ | ||
@safe-global/=node_modules/@safe-global/ | ||
@ERC4337/=node_modules/@ERC4337/ | ||
@openzeppelin/=node_modules/@openzeppelin/ | ||
@prb/math/=node_modules/@prb/math/ | ||
erc4337-validation/=node_modules/erc4337-validation/src/ |
Oops, something went wrong.