File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
packages/cli/src/scaffold Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,8 @@ const GRAPH_CLI_VERSION = process.env.GRAPH_CLI_TESTS
1616 undefined
1717 : // For scaffolding real subgraphs
1818 version ;
19+ const GRAPH_TS_VERSION = '0.36.0' ;
20+ const GRAPH_MATCHSTICK_VERSION = '0.6.0' ;
1921
2022export interface ScaffoldOptions {
2123 protocol : Protocol ;
@@ -78,9 +80,11 @@ export default class Scaffold {
7880 } ,
7981 dependencies : {
8082 '@graphprotocol/graph-cli' : GRAPH_CLI_VERSION ,
81- '@graphprotocol/graph-ts' : `0.32.0` ,
83+ '@graphprotocol/graph-ts' : GRAPH_TS_VERSION ,
8284 } ,
83- devDependencies : this . protocol . hasEvents ( ) ? { 'matchstick-as' : `0.5.0` } : undefined ,
85+ devDependencies : this . protocol . hasEvents ( )
86+ ? { 'matchstick-as' : GRAPH_MATCHSTICK_VERSION }
87+ : undefined ,
8488 } ) ,
8589 { parser : 'json' } ,
8690 ) ;
You can’t perform that action at this time.
0 commit comments