Skip to content

Commit

Permalink
build: Add tasks for code generation, building, and deployment of The…
Browse files Browse the repository at this point in the history
… Graph subgraph. (#22)

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->

## Summary by CodeRabbit

- **New Features**
- Added tasks for code generation and building subgraphs for The Graph
across multiple projects, enabling easier management and deployment of
subgraph types.

<!-- end of auto-generated comment: release notes by coderabbit.ai -->
  • Loading branch information
roderik authored Jul 2, 2024
1 parent 6db9caf commit c377911
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,22 @@
"command": "btp-scs hardhat deploy remote --reset ${input:extra-deployment} -m ${input:deployment-module}",
"problemMatcher": []
},
{
"label": "The Graph - Codegen the subgraph types",
"type": "shell",
"command": "btp-scs subgraph codegen",
"problemMatcher": []
},
{
"label": "The Graph - Build the subgraph",
"type": "shell",
"command": "btp-scs subgraph build",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": false
},
},
{
"label": "The Graph - Deploy or update the subgraph",
"type": "shell",
Expand Down

0 comments on commit c377911

Please sign in to comment.