Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/basic-event-handlers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"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"
},
"devDependencies": {
"@graphprotocol/graph-ts": "0.24.0-alpha.0",
"@graphprotocol/graph-ts": "0.24.0",
"apollo-fetch": "^0.7.0"
},
"dependencies": {
Expand Down
8 changes: 4 additions & 4 deletions examples/basic-event-handlers/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# yarn lockfile v1


"@graphprotocol/graph-ts@0.24.0-alpha.0":
version "0.24.0-alpha.0"
resolved "https://registry.yarnpkg.com/@graphprotocol/graph-ts/-/graph-ts-0.24.0-alpha.0.tgz#8fe2b09a123adc5a65c82b823a1cb2d99f3cce2b"
integrity sha512-PLhTMlFMoLZpTqJlKH5f+5VRN3yWmXfssVwWk7uauVeY8IuAWjWB3RNubS574q9uf0QjPKOacekXY5EKRWOzEA==
"@graphprotocol/graph-ts@0.24.0":
version "0.24.0"
resolved "https://registry.yarnpkg.com/@graphprotocol/graph-ts/-/graph-ts-0.24.0.tgz#ccfa14edf015f3fc6d37b7d2a95e71ec6acc0005"
integrity sha512-XciVlalOXzS2Iv8WeAwO0jwWzPBlzEWLtwNT5FdII962TAzbgZ6fx1nNGjGZLwwq38/aUX154+tdvEmL57gZqQ==
dependencies:
assemblyscript "0.19.10"

Expand Down
2 changes: 1 addition & 1 deletion examples/example-subgraph/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"build-wast": "../../bin/graph build -t wast subgraph.yaml"
},
"devDependencies": {
"@graphprotocol/graph-ts": "0.24.0-alpha.0"
"@graphprotocol/graph-ts": "0.24.0"
},
"resolutions": {
"assemblyscript": "0.19.10"
Expand Down
8 changes: 4 additions & 4 deletions examples/example-subgraph/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# yarn lockfile v1


"@graphprotocol/graph-ts@0.24.0-alpha.0":
version "0.24.0-alpha.0"
resolved "https://registry.yarnpkg.com/@graphprotocol/graph-ts/-/graph-ts-0.24.0-alpha.0.tgz#8fe2b09a123adc5a65c82b823a1cb2d99f3cce2b"
integrity sha512-PLhTMlFMoLZpTqJlKH5f+5VRN3yWmXfssVwWk7uauVeY8IuAWjWB3RNubS574q9uf0QjPKOacekXY5EKRWOzEA==
"@graphprotocol/graph-ts@0.24.0":
version "0.24.0"
resolved "https://registry.yarnpkg.com/@graphprotocol/graph-ts/-/graph-ts-0.24.0.tgz#ccfa14edf015f3fc6d37b7d2a95e71ec6acc0005"
integrity sha512-XciVlalOXzS2Iv8WeAwO0jwWzPBlzEWLtwNT5FdII962TAzbgZ6fx1nNGjGZLwwq38/aUX154+tdvEmL57gZqQ==
dependencies:
assemblyscript "0.19.10"

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphprotocol/graph-cli",
"version": "0.24.0-alpha.0",
"version": "0.24.0",
"description": "CLI for building for and deploying to The Graph",
"dependencies": {
"assemblyscript": "0.19.10",
Expand Down
2 changes: 1 addition & 1 deletion src/scaffold.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const generatePackageJson = ({ subgraphName, node }) =>
},
dependencies: {
'@graphprotocol/graph-cli': graphCliVersion,
'@graphprotocol/graph-ts': `0.24.0-alpha.0`,
'@graphprotocol/graph-ts': `0.24.0`,
},
}),
{ parser: 'json' },
Expand Down