Skip to content

Commit 35bf240

Browse files
committed
update scaffolded package version
1 parent 80dd64d commit 35bf240

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

packages/cli/src/scaffold/index.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff 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

2022
export 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
);

0 commit comments

Comments
 (0)