We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6e96db8 + 57631e0 commit 89ee362Copy full SHA for 89ee362
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@graphprotocol/graph-cli",
3
- "version": "0.23.0-alpha.0",
+ "version": "0.23.0",
4
"description": "CLI for building for and deploying to The Graph",
5
"dependencies": {
6
"assemblyscript": "0.19.10",
src/commands/test.js
@@ -46,7 +46,7 @@ module.exports = {
46
47
let binary = new Binary(platform, url, version);
48
await binary.install(force);
49
- binary.run(datasource);
+ datasource ? binary.run(datasource) : binary.run();
50
}
51
52
0 commit comments