Skip to content

Commit 1f35e82

Browse files
committed
examples, src: apply changes requested by @otaviopace
1 parent cd6263c commit 1f35e82

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

examples/basic-event-handlers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"deploy-test": "../../bin/graph deploy test/basic-event-handlers --version-label v0.0.1 --ipfs http://localhost:15001 --node http://127.0.0.1:18020"
1010
},
1111
"devDependencies": {
12-
"@graphprotocol/graph-ts": "0.23.1",
12+
"@graphprotocol/graph-ts": "0.24.0-alpha.0",
1313
"apollo-fetch": "^0.7.0"
1414
},
1515
"dependencies": {

examples/example-subgraph/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"build-wast": "../../bin/graph build -t wast subgraph.yaml"
88
},
99
"devDependencies": {
10-
"@graphprotocol/graph-ts": "0.23.1"
10+
"@graphprotocol/graph-ts": "0.24.0-alpha.0"
1111
},
1212
"resolutions": {
1313
"assemblyscript": "0.19.10"

src/migrations/mapping_api_version_0_0_5.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ module.exports = {
2424
// Only migrate if the graph-ts version is >= 0.23.0...
2525
// Coerce needed because we may be dealing with an alpha version
2626
// and in the `semver` library this would not return true on equality.
27-
semver.gte(semver.coerce(graphTsVersion), '0.23.0') &&
27+
semver.gte(semver.coerce(graphTsVersion), '0.24.0') &&
2828
// ...and we have a manifest with mapping > apiVersion = 0.0.5
2929
manifest &&
3030
typeof manifest === 'object' &&

src/scaffold.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const generatePackageJson = ({ subgraphName, node }) =>
4949
},
5050
dependencies: {
5151
'@graphprotocol/graph-cli': graphCliVersion,
52-
'@graphprotocol/graph-ts': `0.23.1`,
52+
'@graphprotocol/graph-ts': `0.24.0-alpha.0`,
5353
},
5454
}),
5555
{ parser: 'json' },

0 commit comments

Comments
 (0)